seo

Dynamic Landing Pages: Optimizing for Natural Search

We all know the conversion benefits of tuning your PPC ad titles to match the exact words the customer typed in their search, breaking out what would be convenient “groupings” of ads with the same landing page into separate ads with separate, search-matching titles.

For example, we have a honeymoon registry — but brides might think of it (and therefore search for) as a wedding registry or a bridal registry.Β  Rather than just have one ad entitled “Honeymoon Registry,” we create 3 ads. One entitled “Honeymoon Registry,” one as “Wedding Registry” and one as “Bridal Registry” as we know we’ll convert better if the title exactly matches the words the customer has in their mind when they’re doing their search.

If you’re on top of your game (and I know you are πŸ™‚ then you’ll have 3 different landing pages, each with the corresponding matching phrase in the title, subtitles, body text, etc.Β  Without actually reading and thinking about the words, you want the user to instantly say “yep, that’s what I was looking for”.Β  Don’t make them get all thesaurusical on you, that’s too much brain work and won’t convert as well.

But what about those same pages that show up in the natural search results?

We’ll tackle this in two steps:Β  First, I’ll show you how to adjust the title and key phrases in the landing page based on what keywords were searched for.

Then, for those of you who don’t mind a few black smudges on your pearly white hats, we’ll talk about some techniques for getting Google to actually show the different flavors of the page — including the all-important variations on the and description snippets shown in Google’s SERPs.</p> <p>I’m going to use classic ASP for my examples, but none of this is rocket-science coding so it should be a snap for you to translate to PHP or whatever language you need for your site.</p> <p>MINING GOOGLE’S QUERY STRING:</p> <p>Before you even get started, you should look at your analytics reports to see what terms are most commonly used to get to your landing page.Β  If your analytics software won’t show you terms for a specific page, it’s really a cinch to just inspect the HTTP referrer on the pages you care about and if the referrer is Google, save it to the database, then after a few days, have a look at what’s in the database.</p> <p>When a user clicks on a search result in Google to get to your site, the search terms they typed in are available to you in the HTTP referrer string.</p> <p>Example:</p> <p><a href="http://www.google.com/search?hl=en&q=wedding+registry+for+your+honeymoon&meta=&aq=6&oq" target="_blank" rel="noopener">http://www.google.com/search?hl=en&q=wedding+registry+for+your+honeymoon&meta=&aq=6&oq</a>=</p> <p>Big, flaming, sirens-blaring warning: Do NOT attempt to pull the query string out intact and just plug it into variables for your title, bits of body text, etc.!Β  ThisΒ will expose you to cross-site scripting vulnerabilities.Β  Anytime you are going to use a parameter from a referrer (or more commonly the query string) to control displayed text, you must screen out <script> etc.Β Β  If you don't know what I'm talking about,Β then just follow my instructions and don't try to get too clever/crazy.</p> <p>You'll want to have a default phrase for substituting into your title, <H1> headings, and body text. In fact, you may have several slightly different ones, perhaps with different capitalization, etc.Β  You'll inspect the query string in the referrer for specific words, and if you don't find any of your "special" words, then sub in withΒ the default values.</p> <p>Some housekeeping first: variables and constants to make this a little more readable:</p> <p><img decoding="async" height="77" width="596" alt="code sample" src="https://moz.com/img_uploads/code1.jpg">Β </p> <p>Set the default version of the page (we'll set the strings later based on this):</p> <p><img loading="lazy" decoding="async" height="26" width="356" alt="code sample" src="https://moz.com/img_uploads/code2.jpg"></p> <p>All you Canadians, Brits, etc. can just globally replace "flavor" with "flavour"...you'll feel better, you know you will :-p</p> <p>OK, now let's get the referrer:</p> <p><img loading="lazy" decoding="async" height="33" width="496" alt="code sample" src="https://moz.com/img_uploads/code6.jpg"></p> <p>We only want to look for search terms if we're looking at a referral from Google. All the different country versions of Google start with <a href="http://www.google/" target="_blank" rel="noopener">www.google</a>.</p> <p>If it *is* coming from a Google search, then we'll pull out the query string, and search it for a few different words to see if we want to alter the flavor of theΒ page accordingly.Β  Here's the code...it's mostly just boring old text string extraction stuff:</p> <p><img loading="lazy" decoding="async" height="386" width="761" alt="code sample" src="https://moz.com/img_uploads/code3.jpg">Β </p> <p>Once we get to here, we'll have set our nPageFlavor variable to one of our three versions of the page.Β  Now all there is left to do is set the string variables accordingly, then in the page content stuff those variables in the appropriate places on the page.</p> <p><img loading="lazy" decoding="async" height="240" width="556" alt="code sample" src="https://moz.com/img_uploads/code4.jpg">Β </p> <p>DRIFTING OVER TO THE DARK (HAT) SIDE</p> <p>Now, ideally you'd like Google to show the title and snippet from that page corresponding to the search term, rather than just the default version (which is what Google's crawler would see, as it's not going to pass in a query string with search terms).</p> <p>If you don't want Google to think these are essentially the same page (i.e. dup content), you'll want to do a fair bit more substantial text substitution.Β  You can do this based on your nPageFlavor variable of course.Β  But then, you'll need to show links to each flavor, and do it in some reasonably intelligent way.Β  For example, at the bottom of the page you could link to each of the other versions with something like "More about the differences between a wedding registry and a honeymoon registry" and just link the term you want to tune the target page for (e.g. "wedding registry" if nPageFlavor = PAGEFLAVOR_HONEYMOONREGISTRY).</p> <p>Once you've done this, you'll need a way to force a given page flavor, as for your internal site links, you won't have theΒ referrer to analyze.Β  This isn't too tough...just pass a page flavor parameter in the query string to this page, e.g.:</p> <p><img loading="lazy" decoding="async" height="31" width="181" alt="code sample" src="https://moz.com/img_uploads/code7.jpg"></p> <p>To show the bridal registry version.Β  Then, check for pf= passed in, and if so, force the page flavor and don't look at the referrer:</p> <p><img loading="lazy" decoding="async" height="99" width="431" alt="code sample" src="https://moz.com/img_uploads/code5.jpg">Β </p> <p>Of course, instead of /Registry.asp?pf=3 you might want three named versions instead, e.g. /HoneymoonRegistry.asp etc.</p> <p>To do this, use the old mod_rewrite stuff, or in ASP you can create a page for /HoneymoonRegistry.asp and do a Server. Transfer to /Registry.asp?pf=3 to have it generate the HTML for you invisibly to the client (and Googlebot).</p> </p></div> <div class="post-shortlink"> <input type="text" id="short-post-url" value="artanbiz.com/?p=11424" data-url="https://artanbiz.com/?p=11424"> <button type="button" id="copy-post-url" class="button">Copy URL</button> <span id="copy-post-url-msg" style="display:none;">URL Copied</span> </div> <script> document.getElementById('copy-post-url').onclick = function(){ var copyText = document.getElementById('short-post-url'); copyText.select(); copyText.setSelectionRange(0, 99999); navigator.clipboard.writeText(copyText.getAttribute('data-url')); document.getElementById('copy-post-url-msg').style.display = "block"; } </script> </div><!-- .entry-content /--> <div id="post-extra-info"> <div class="theiaStickySidebar"> <div class="single-post-meta post-meta clearfix"><span class="author-meta single-author with-avatars"><span class="meta-item meta-author-wrapper meta-author-1"> <span class="meta-author-avatar"> <a href="https://artanbiz.com/author/admin/"><img alt='Photo of Ali JalilPour' src='https://secure.gravatar.com/avatar/7d1062ff0aa6a43c53508a5c24afc28b?s=140&d=mm&r=g' srcset='https://secure.gravatar.com/avatar/7d1062ff0aa6a43c53508a5c24afc28b?s=280&d=mm&r=g 2x' class='avatar avatar-140 photo' height='140' width='140' loading='lazy' decoding='async'/></a> </span> <span class="meta-author"><a href="https://artanbiz.com/author/admin/" class="author-name tie-icon" title="Ali JalilPour">Ali JalilPour</a></span> <a href="mailto:info@momgh7demo.ir" class="author-email-link" target="_blank" rel="nofollow noopener" title="Send an email"> <span class="tie-icon-envelope" aria-hidden="true"></span> <span class="screen-reader-text">Send an email</span> </a> </span></span><span class="date meta-item tie-icon">July 3, 2024</span><div class="tie-alignright"><span class="meta-comment tie-icon meta-item fa-before">0</span><span class="meta-views meta-item "><span class="tie-icon-fire" aria-hidden="true"></span> 0 </span><span class="meta-reading-time meta-item"><span class="tie-icon-bookmark" aria-hidden="true"></span> 4 minutes read</span> </div></div><!-- .post-meta --> <div id="share-buttons-top" class="share-buttons share-buttons-top"> <div class="share-links share-centered icons-only"> <div class="share-title"> <span class="tie-icon-share" aria-hidden="true"></span> <span> Share</span> </div> <a href="https://www.facebook.com/sharer.php?u=https://artanbiz.com/dynamic-landing-pages-optimizing-for-natural-search/" rel="external noopener nofollow" title="Facebook" target="_blank" class="facebook-share-btn " data-raw="https://www.facebook.com/sharer.php?u={post_link}"> <span class="share-btn-icon tie-icon-facebook"></span> <span class="screen-reader-text">Facebook</span> </a> <a href="https://twitter.com/intent/tweet?text=Dynamic%20Landing%20Pages%3A%20Optimizing%20for%20Natural%20Search&url=https://artanbiz.com/dynamic-landing-pages-optimizing-for-natural-search/" rel="external noopener nofollow" title="X" target="_blank" class="twitter-share-btn " data-raw="https://twitter.com/intent/tweet?text={post_title}&url={post_link}"> <span class="share-btn-icon tie-icon-twitter"></span> <span class="screen-reader-text">X</span> </a> <a href="https://www.linkedin.com/shareArticle?mini=true&url=https://artanbiz.com/dynamic-landing-pages-optimizing-for-natural-search/&title=Dynamic%20Landing%20Pages%3A%20Optimizing%20for%20Natural%20Search" rel="external noopener nofollow" title="LinkedIn" target="_blank" class="linkedin-share-btn " data-raw="https://www.linkedin.com/shareArticle?mini=true&url={post_full_link}&title={post_title}"> <span class="share-btn-icon tie-icon-linkedin"></span> <span class="screen-reader-text">LinkedIn</span> </a> <a href="https://www.tumblr.com/share/link?url=https://artanbiz.com/dynamic-landing-pages-optimizing-for-natural-search/&name=Dynamic%20Landing%20Pages%3A%20Optimizing%20for%20Natural%20Search" rel="external noopener nofollow" title="Tumblr" target="_blank" class="tumblr-share-btn " data-raw="https://www.tumblr.com/share/link?url={post_link}&name={post_title}"> <span class="share-btn-icon tie-icon-tumblr"></span> <span class="screen-reader-text">Tumblr</span> </a> <a href="https://pinterest.com/pin/create/button/?url=https://artanbiz.com/dynamic-landing-pages-optimizing-for-natural-search/&description=Dynamic%20Landing%20Pages%3A%20Optimizing%20for%20Natural%20Search&media=https://artanbiz.com/wp-content/uploads/2024/07/dynamic-landing-pages-optimizing-for-natural-search_66856b9f5c813.png" rel="external noopener nofollow" title="Pinterest" target="_blank" class="pinterest-share-btn " data-raw="https://pinterest.com/pin/create/button/?url={post_link}&description={post_title}&media={post_img}"> <span class="share-btn-icon tie-icon-pinterest"></span> <span class="screen-reader-text">Pinterest</span> </a> <a href="https://getpocket.com/save?title=Dynamic%20Landing%20Pages%3A%20Optimizing%20for%20Natural%20Search&url=https://artanbiz.com/dynamic-landing-pages-optimizing-for-natural-search/" rel="external noopener nofollow" title="Pocket" target="_blank" class="pocket-share-btn " data-raw="https://getpocket.com/save?title={post_title}&url={post_link}"> <span class="share-btn-icon tie-icon-get-pocket"></span> <span class="screen-reader-text">Pocket</span> </a> <a href="https://web.skype.com/share?url=https://artanbiz.com/dynamic-landing-pages-optimizing-for-natural-search/&text=Dynamic%20Landing%20Pages%3A%20Optimizing%20for%20Natural%20Search" rel="external noopener nofollow" title="Skype" target="_blank" class="skype-share-btn " data-raw="https://web.skype.com/share?url={post_link}&text={post_title}"> <span class="share-btn-icon tie-icon-skype"></span> <span class="screen-reader-text">Skype</span> </a> <a href="fb-messenger://share?app_id=5303202981&display=popup&link=https://artanbiz.com/dynamic-landing-pages-optimizing-for-natural-search/&redirect_uri=https://artanbiz.com/dynamic-landing-pages-optimizing-for-natural-search/" rel="external noopener nofollow" title="Messenger" target="_blank" class="messenger-mob-share-btn messenger-share-btn " data-raw="fb-messenger://share?app_id=5303202981&display=popup&link={post_link}&redirect_uri={post_link}"> <span class="share-btn-icon tie-icon-messenger"></span> <span class="screen-reader-text">Messenger</span> </a> <a href="https://www.facebook.com/dialog/send?app_id=5303202981&display=popup&link=https://artanbiz.com/dynamic-landing-pages-optimizing-for-natural-search/&redirect_uri=https://artanbiz.com/dynamic-landing-pages-optimizing-for-natural-search/" rel="external noopener nofollow" title="Messenger" target="_blank" class="messenger-desktop-share-btn messenger-share-btn " data-raw="https://www.facebook.com/dialog/send?app_id=5303202981&display=popup&link={post_link}&redirect_uri={post_link}"> <span class="share-btn-icon tie-icon-messenger"></span> <span class="screen-reader-text">Messenger</span> </a> <a href="viber://forward?text=Dynamic%20Landing%20Pages%3A%20Optimizing%20for%20Natural%20Search%20https://artanbiz.com/dynamic-landing-pages-optimizing-for-natural-search/" rel="external noopener nofollow" title="Viber" target="_blank" class="viber-share-btn " data-raw="viber://forward?text={post_title}%20{post_link}"> <span class="share-btn-icon tie-icon-phone"></span> <span class="screen-reader-text">Viber</span> </a> </div><!-- .share-links /--> </div><!-- .share-buttons /--> </div> </div> <div class="clearfix"></div> <script id="tie-schema-json" type="application/ld+json">{"@context":"http:\/\/schema.org","@type":"Article","dateCreated":"2024-07-03T08:17:50-07:00","datePublished":"2024-07-03T08:17:50-07:00","dateModified":"2024-07-03T08:17:50-07:00","headline":"Dynamic Landing Pages: Optimizing for Natural Search","name":"Dynamic Landing Pages: Optimizing for Natural Search","keywords":[],"url":"https:\/\/artanbiz.com\/dynamic-landing-pages-optimizing-for-natural-search\/","description":"We all know the conversion benefits of tuning your PPC ad titles to match the exact words the customer typed in their search, breaking out what would be convenient \"groupings\" of ads with the same lan","copyrightYear":"2024","articleSection":"seo","articleBody":"\n We all know the conversion benefits of tuning your PPC ad titles to match the exact words the customer typed in their search, breaking out what would be convenient \"groupings\" of ads with the same landing page into separate ads with separate, search-matching titles.\nFor example, we have a honeymoon registry -- but brides might think of it (and therefore search for) as a wedding registry or a bridal registry.\u00a0 Rather than just have one ad entitled \"Honeymoon Registry,\" we create 3 ads. One entitled \"Honeymoon Registry,\" one as \"Wedding Registry\" and one as \"Bridal Registry\" as we know we'll convert better if the title exactly matches the words the customer has in their mind when they're doing their search.\nIf you're on top of your game (and I know you are :-) then you'll have 3 different landing pages, each with the corresponding matching phrase in the title, subtitles, body text, etc.\u00a0 Without actually reading and thinking about the words, you want the user to instantly say \"yep, that's what I was looking for\".\u00a0 Don't make them get all thesaurusical on you, that's too much brain work and won't convert as well.\nBut what about those same pages that show up in the natural search results?\nWe'll tackle this in two steps:\u00a0 First, I'll show you how to adjust the title and key phrases in the landing page based on what keywords were searched for.\nThen, for those of you who don't mind a few black smudges on your pearly white hats, we'll talk about some techniques for getting Google to actually show the different flavors of the page -- including the all-important variations on the and description snippets shown in Google's SERPs.\nI'm going to use classic ASP for my examples, but none of this is rocket-science coding so it should be a snap for you to translate to PHP or whatever language you need for your site.\nMINING GOOGLE'S QUERY STRING:\nBefore you even get started, you should look at your analytics reports to see what terms are most commonly used to get to your landing page.\u00a0 If your analytics software won't show you terms for a specific page, it's really a cinch to just inspect the HTTP referrer on the pages you care about and if the referrer is Google, save it to the database, then after a few days, have a look at what's in the database.\nWhen a user clicks on a search result in Google to get to your site, the search terms they typed in are available to you in the HTTP referrer string.\nExample:\nhttp:\/\/www.google.com\/search?hl=en&q=wedding+registry+for+your+honeymoon&meta=&aq=6&oq=\nBig, flaming, sirens-blaring warning: Do NOT attempt to pull the query string out intact and just plug it into variables for your title, bits of body text, etc.!\u00a0 This\u00a0will expose you to cross-site scripting vulnerabilities.\u00a0 Anytime you are going to use a parameter from a referrer (or more commonly the query string) to control displayed text, you must screen out etc.\u00a0\u00a0 If you don't know what I'm talking about,\u00a0then just follow my instructions and don't try to get too clever\/crazy.\nYou'll want to have a default phrase for substituting into your title, headings, and body text. In fact, you may have several slightly different ones, perhaps with different capitalization, etc.\u00a0 You'll inspect the query string in the referrer for specific words, and if you don't find any of your \"special\" words, then sub in with\u00a0the default values.\nSome housekeeping first: variables and constants to make this a little more readable:\n\u00a0\nSet the default version of the page (we'll set the strings later based on this):\n\nAll you Canadians, Brits, etc. can just globally replace \"flavor\" with \"flavour\"...you'll feel better, you know you will :-p\nOK, now let's get the referrer:\n\nWe only want to look for search terms if we're looking at a referral from Google. All the different country versions of Google start with www.google.\nIf it *is* coming from a Google search, then we'll pull out the query string, and search it for a few different words to see if we want to alter the flavor of the\u00a0page accordingly.\u00a0 Here's the code...it's mostly just boring old text string extraction stuff:\n\u00a0\nOnce we get to here, we'll have set our nPageFlavor variable to one of our three versions of the page.\u00a0 Now all there is left to do is set the string variables accordingly, then in the page content stuff those variables in the appropriate places on the page.\n\u00a0\nDRIFTING OVER TO THE DARK (HAT) SIDE\nNow, ideally you'd like Google to show the title and snippet from that page corresponding to the search term, rather than just the default version (which is what Google's crawler would see, as it's not going to pass in a query string with search terms).\nIf you don't want Google to think these are essentially the same page (i.e. dup content), you'll want to do a fair bit more substantial text substitution.\u00a0 You can do this based on your nPageFlavor variable of course.\u00a0 But then, you'll need to show links to each flavor, and do it in some reasonably intelligent way.\u00a0 For example, at the bottom of the page you could link to each of the other versions with something like \"More about the differences between a wedding registry and a honeymoon registry\" and just link the term you want to tune the target page for (e.g. \"wedding registry\" if nPageFlavor = PAGEFLAVOR_HONEYMOONREGISTRY).\nOnce you've done this, you'll need a way to force a given page flavor, as for your internal site links, you won't have the\u00a0referrer to analyze.\u00a0 This isn't too tough...just pass a page flavor parameter in the query string to this page, e.g.:\n\nTo show the bridal registry version.\u00a0 Then, check for pf= passed in, and if so, force the page flavor and don't look at the referrer:\n\u00a0\nOf course, instead of \/Registry.asp?pf=3 you might want three named versions instead, e.g. \/HoneymoonRegistry.asp etc.\nTo do this, use the old mod_rewrite stuff, or in ASP you can create a page for \/HoneymoonRegistry.asp and do a Server. Transfer to \/Registry.asp?pf=3 to have it generate the HTML for you invisibly to the client (and Googlebot).\n \n \n ","publisher":{"@id":"#Publisher","@type":"Organization","name":"ArtanBiz Mag","logo":{"@type":"ImageObject","url":"https:\/\/artanbiz.com\/wp-content\/uploads\/2024\/06\/logo.png"},"sameAs":["#","#","#","#"]},"sourceOrganization":{"@id":"#Publisher"},"copyrightHolder":{"@id":"#Publisher"},"mainEntityOfPage":{"@type":"WebPage","@id":"https:\/\/artanbiz.com\/dynamic-landing-pages-optimizing-for-natural-search\/","breadcrumb":{"@id":"#Breadcrumb"}},"author":{"@type":"Person","name":"Ali JalilPour","url":"https:\/\/artanbiz.com\/author\/admin\/"},"image":{"@type":"ImageObject","url":"https:\/\/artanbiz.com\/wp-content\/uploads\/2024\/07\/dynamic-landing-pages-optimizing-for-natural-search_66856b9f5c813.png","width":1200,"height":400}}</script> <div id="share-buttons-bottom" class="share-buttons share-buttons-bottom"> <div class="share-links share-centered icons-only"> <div class="share-title"> <span class="tie-icon-share" aria-hidden="true"></span> <span> Share</span> </div> <a href="https://www.facebook.com/sharer.php?u=https://artanbiz.com/dynamic-landing-pages-optimizing-for-natural-search/" rel="external noopener nofollow" title="Facebook" target="_blank" class="facebook-share-btn " data-raw="https://www.facebook.com/sharer.php?u={post_link}"> <span class="share-btn-icon tie-icon-facebook"></span> <span class="screen-reader-text">Facebook</span> </a> <a href="https://twitter.com/intent/tweet?text=Dynamic%20Landing%20Pages%3A%20Optimizing%20for%20Natural%20Search&url=https://artanbiz.com/dynamic-landing-pages-optimizing-for-natural-search/" rel="external noopener nofollow" title="X" target="_blank" class="twitter-share-btn " data-raw="https://twitter.com/intent/tweet?text={post_title}&url={post_link}"> <span class="share-btn-icon tie-icon-twitter"></span> <span class="screen-reader-text">X</span> </a> <a href="https://www.linkedin.com/shareArticle?mini=true&url=https://artanbiz.com/dynamic-landing-pages-optimizing-for-natural-search/&title=Dynamic%20Landing%20Pages%3A%20Optimizing%20for%20Natural%20Search" rel="external noopener nofollow" title="LinkedIn" target="_blank" class="linkedin-share-btn " data-raw="https://www.linkedin.com/shareArticle?mini=true&url={post_full_link}&title={post_title}"> <span class="share-btn-icon tie-icon-linkedin"></span> <span class="screen-reader-text">LinkedIn</span> </a> <a href="https://www.tumblr.com/share/link?url=https://artanbiz.com/dynamic-landing-pages-optimizing-for-natural-search/&name=Dynamic%20Landing%20Pages%3A%20Optimizing%20for%20Natural%20Search" rel="external noopener nofollow" title="Tumblr" target="_blank" class="tumblr-share-btn " data-raw="https://www.tumblr.com/share/link?url={post_link}&name={post_title}"> <span class="share-btn-icon tie-icon-tumblr"></span> <span class="screen-reader-text">Tumblr</span> </a> <a href="https://pinterest.com/pin/create/button/?url=https://artanbiz.com/dynamic-landing-pages-optimizing-for-natural-search/&description=Dynamic%20Landing%20Pages%3A%20Optimizing%20for%20Natural%20Search&media=https://artanbiz.com/wp-content/uploads/2024/07/dynamic-landing-pages-optimizing-for-natural-search_66856b9f5c813.png" rel="external noopener nofollow" title="Pinterest" target="_blank" class="pinterest-share-btn " data-raw="https://pinterest.com/pin/create/button/?url={post_link}&description={post_title}&media={post_img}"> <span class="share-btn-icon tie-icon-pinterest"></span> <span class="screen-reader-text">Pinterest</span> </a> <a href="https://reddit.com/submit?url=https://artanbiz.com/dynamic-landing-pages-optimizing-for-natural-search/&title=Dynamic%20Landing%20Pages%3A%20Optimizing%20for%20Natural%20Search" rel="external noopener nofollow" title="Reddit" target="_blank" class="reddit-share-btn " data-raw="https://reddit.com/submit?url={post_link}&title={post_title}"> <span class="share-btn-icon tie-icon-reddit"></span> <span class="screen-reader-text">Reddit</span> </a> <a href="https://vk.com/share.php?url=https://artanbiz.com/dynamic-landing-pages-optimizing-for-natural-search/" rel="external noopener nofollow" title="VKontakte" target="_blank" class="vk-share-btn " data-raw="https://vk.com/share.php?url={post_link}"> <span class="share-btn-icon tie-icon-vk"></span> <span class="screen-reader-text">VKontakte</span> </a> <a href="https://connect.ok.ru/dk?st.cmd=WidgetSharePreview&st.shareUrl=https://artanbiz.com/dynamic-landing-pages-optimizing-for-natural-search/&description=Dynamic%20Landing%20Pages%3A%20Optimizing%20for%20Natural%20Search&media=https://artanbiz.com/wp-content/uploads/2024/07/dynamic-landing-pages-optimizing-for-natural-search_66856b9f5c813.png" rel="external noopener nofollow" title="Odnoklassniki" target="_blank" class="odnoklassniki-share-btn " data-raw="https://connect.ok.ru/dk?st.cmd=WidgetSharePreview&st.shareUrl={post_link}&description={post_title}&media={post_img}"> <span class="share-btn-icon tie-icon-odnoklassniki"></span> <span class="screen-reader-text">Odnoklassniki</span> </a> <a href="https://getpocket.com/save?title=Dynamic%20Landing%20Pages%3A%20Optimizing%20for%20Natural%20Search&url=https://artanbiz.com/dynamic-landing-pages-optimizing-for-natural-search/" rel="external noopener nofollow" title="Pocket" target="_blank" class="pocket-share-btn " data-raw="https://getpocket.com/save?title={post_title}&url={post_link}"> <span class="share-btn-icon tie-icon-get-pocket"></span> <span class="screen-reader-text">Pocket</span> </a> <a href="https://web.skype.com/share?url=https://artanbiz.com/dynamic-landing-pages-optimizing-for-natural-search/&text=Dynamic%20Landing%20Pages%3A%20Optimizing%20for%20Natural%20Search" rel="external noopener nofollow" title="Skype" target="_blank" class="skype-share-btn " data-raw="https://web.skype.com/share?url={post_link}&text={post_title}"> <span class="share-btn-icon tie-icon-skype"></span> <span class="screen-reader-text">Skype</span> </a> <a href="mailto:?subject=Dynamic%20Landing%20Pages%3A%20Optimizing%20for%20Natural%20Search&body=https://artanbiz.com/dynamic-landing-pages-optimizing-for-natural-search/" rel="external noopener nofollow" title="Share via Email" target="_blank" class="email-share-btn " data-raw="mailto:?subject={post_title}&body={post_link}"> <span class="share-btn-icon tie-icon-envelope"></span> <span class="screen-reader-text">Share via Email</span> </a> <a href="#" rel="external noopener nofollow" title="Print" target="_blank" class="print-share-btn " data-raw="#"> <span class="share-btn-icon tie-icon-print"></span> <span class="screen-reader-text">Print</span> </a> </div><!-- .share-links /--> </div><!-- .share-buttons /--> </article><!-- #the-post /--> <div class="post-components"> <div class="about-author container-wrapper about-author-1"> <div class="author-avatar"> <a href="https://artanbiz.com/author/admin/"> <img alt='Photo of Ali JalilPour' src='https://secure.gravatar.com/avatar/7d1062ff0aa6a43c53508a5c24afc28b?s=180&d=mm&r=g' srcset='https://secure.gravatar.com/avatar/7d1062ff0aa6a43c53508a5c24afc28b?s=360&d=mm&r=g 2x' class='avatar avatar-180 photo' height='180' width='180' loading='lazy' decoding='async'/> </a> </div><!-- .author-avatar /--> <div class="author-info"> <h3 class="author-name"><a href="https://artanbiz.com/author/admin/">Ali JalilPour</a></h3> <div class="author-bio"> </div><!-- .author-bio /--> <ul class="social-icons"> <li class="social-icons-item"> <a href="https://artanbiz.com" rel="external noopener nofollow" target="_blank" class="social-link url-social-icon"> <span class="tie-icon-home" aria-hidden="true"></span> <span class="screen-reader-text">Website</span> </a> </li> </ul> </div><!-- .author-info /--> <div class="clearfix"></div> </div><!-- .about-author /--> <div class="container-wrapper" id="post-newsletter"> <div class="subscribe-widget"> <div class="widget-inner-wrap"> <span class="tie-icon-envelope newsletter-icon" aria-hidden="true"></span> <div class="subscribe-widget-content"> <span class="subscribe-subtitle">With Product You Purchase</span> <h3>Subscribe to our mailing list to get the new updates!</h3> <p>Lorem ipsum dolor sit amet, consectetur.</p> </div> <div id="mc_embed_signup"> <form action="#" method="post" id="mc-embedded-subscribe-form" name="mc-embedded-subscribe-form" class="subscribe-form validate" target="_blank" novalidate> <div id="mc_embed_signup_scroll"> <div class="mc-field-group"> <label class="screen-reader-text" for="mce-EMAIL">Enter your Email address</label> <input type="email" value="" id="mce-EMAIL" placeholder="Enter your Email address" name="EMAIL" class="subscribe-input required email" id="mce-EMAIL"> </div> <div id="mce-responses" class="clear"> <div class="response" id="mce-error-response" style="display:none"></div> <div class="response" id="mce-success-response" style="display:none"></div> </div> <input type="submit" value="Subscribe" name="subscribe" id="mc-embedded-subscribe" class="button subscribe-submit"> </div> </form> </div> </div><!-- .widget-inner-wrap /--> </div><!-- .subscribe-widget /--> </div><!-- #post-newsletter /--> <div class="prev-next-post-nav container-wrapper media-overlay"> <div class="tie-col-xs-6 prev-post"> <a href="https://artanbiz.com/captchas-effect-on-conversion-rates/" style="background-image: url(https://artanbiz.com/wp-content/uploads/2024/07/captchas-effect-on-conversion-rates_66856b98ea597-390x300.png)" class="post-thumb" rel="prev"> <div class="post-thumb-overlay-wrap"> <div class="post-thumb-overlay"> <span class="tie-icon tie-media-icon"></span> <span class="screen-reader-text">CAPTCHAs' Effect on Conversion Rates</span> </div> </div> </a> <a href="https://artanbiz.com/captchas-effect-on-conversion-rates/" rel="prev"> <h3 class="post-title">CAPTCHAs' Effect on Conversion Rates</h3> </a> </div> <div class="tie-col-xs-6 next-post"> <a href="https://artanbiz.com/whiteboard-friday-market-forces-seo/" style="background-image: url(https://artanbiz.com/wp-content/uploads/2024/07/whiteboard-friday-market-forces-seo_66856ba490d5b-390x300.png)" class="post-thumb" rel="next"> <div class="post-thumb-overlay-wrap"> <div class="post-thumb-overlay"> <span class="tie-icon tie-media-icon"></span> <span class="screen-reader-text">Whiteboard Friday - Market Forces & SEO</span> </div> </div> </a> <a href="https://artanbiz.com/whiteboard-friday-market-forces-seo/" rel="next"> <h3 class="post-title">Whiteboard Friday - Market Forces & SEO</h3> </a> </div> </div><!-- .prev-next-post-nav /--> <div id="related-posts" class="container-wrapper has-extra-post"> <div class="mag-box-title the-global-title"> <h3>Related Articles</h3> </div> <div class="related-posts-list"> <div class="related-item tie-standard"> <a aria-label="Web hosting for SEO: Why it’s important" href="https://artanbiz.com/web-hosting-for-seo-why-its-important/" class="post-thumb"><img width="390" height="300" src="https://artanbiz.com/wp-content/uploads/2024/06/web-hosting-for-seo-why-its-important_667b9fdf0d381-390x300.jpeg" class="attachment-jannah-image-large size-jannah-image-large wp-post-image" alt="" decoding="async" loading="lazy" /></a> <h3 class="post-title"><a href="https://artanbiz.com/web-hosting-for-seo-why-its-important/">Web hosting for SEO: Why it’s important</a></h3> <div class="post-meta clearfix"><span class="date meta-item tie-icon">July 11, 2024</span></div><!-- .post-meta --> </div><!-- .related-item /--> <div class="related-item tie-standard"> <a aria-label="SEM career playbook: Overview of a growing industry" href="https://artanbiz.com/sem-career-playbook-overview-of-a-growing-industry/" class="post-thumb"><img width="390" height="300" src="https://artanbiz.com/wp-content/uploads/2024/06/sem-career-playbook-overview-of-a-growing-industry_667b9fda82946-390x300.jpeg" class="attachment-jannah-image-large size-jannah-image-large wp-post-image" alt="" decoding="async" loading="lazy" /></a> <h3 class="post-title"><a href="https://artanbiz.com/sem-career-playbook-overview-of-a-growing-industry/">SEM career playbook: Overview of a growing industry</a></h3> <div class="post-meta clearfix"><span class="date meta-item tie-icon">July 11, 2024</span></div><!-- .post-meta --> </div><!-- .related-item /--> <div class="related-item tie-standard"> <h3 class="post-title"><a href="https://artanbiz.com/what-is-seo-search-engine-optimization/">What Is SEO – Search Engine Optimization?</a></h3> <div class="post-meta clearfix"><span class="date meta-item tie-icon">July 11, 2024</span></div><!-- .post-meta --> </div><!-- .related-item /--> <div class="related-item tie-standard"> <a aria-label="How I Develop Successful Link Building Strategies for My Clients" href="https://artanbiz.com/how-i-develop-successful-link-building-strategies-for-my-clients/" class="post-thumb"><img width="390" height="300" src="https://artanbiz.com/wp-content/uploads/2024/07/how-i-develop-successful-link-building-strategies-for-my-clients_668d03eb823fa-390x300.png" class="attachment-jannah-image-large size-jannah-image-large wp-post-image" alt="" decoding="async" loading="lazy" /></a> <h3 class="post-title"><a href="https://artanbiz.com/how-i-develop-successful-link-building-strategies-for-my-clients/">How I Develop Successful Link Building Strategies for My Clients</a></h3> <div class="post-meta clearfix"><span class="date meta-item tie-icon">July 9, 2024</span></div><!-- .post-meta --> </div><!-- .related-item /--> </div><!-- .related-posts-list /--> </div><!-- #related-posts /--> <div class="compact-comments"> <a id="show-comments-section" href="#" class="button">Leave a Reply</a> </div> <style>#comments{display: none;}</style> <div id="comments" class="comments-area"> <div id="add-comment-block" class="container-wrapper"> <div id="respond" class="comment-respond"> <h3 id="reply-title" class="comment-reply-title the-global-title">Leave a Reply <small><a rel="nofollow" id="cancel-comment-reply-link" href="/dynamic-landing-pages-optimizing-for-natural-search/#respond" style="display:none;">Cancel reply</a></small></h3><form action="https://artanbiz.com/wp-comments-post.php" method="post" id="commentform" class="comment-form" novalidate><p class="comment-notes"><span id="email-notes">Your email address will not be published.</span> <span class="required-field-message">Required fields are marked <span class="required">*</span></span></p><p class="comment-form-comment"><label for="comment">Comment <span class="required">*</span></label> <textarea id="comment" name="comment" cols="45" rows="8" maxlength="65525" required></textarea></p><p class="comment-form-author"><label for="author">Name <span class="required">*</span></label> <input id="author" name="author" type="text" value="" size="30" maxlength="245" autocomplete="name" required /></p> <p class="comment-form-email"><label for="email">Email <span class="required">*</span></label> <input id="email" name="email" type="email" value="" size="30" maxlength="100" aria-describedby="email-notes" autocomplete="email" required /></p> <p class="comment-form-url"><label for="url">Website</label> <input id="url" name="url" type="url" value="" size="30" maxlength="200" autocomplete="url" /></p> <p class="comment-form-cookies-consent"><input id="wp-comment-cookies-consent" name="wp-comment-cookies-consent" type="checkbox" value="yes" /> <label for="wp-comment-cookies-consent">Save my name, email, and website in this browser for the next time I comment.</label></p> <p class="form-submit"><input name="submit" type="submit" id="submit" class="submit" value="Post Comment" /> <input type='hidden' name='comment_post_ID' value='11424' id='comment_post_ID' /> <input type='hidden' name='comment_parent' id='comment_parent' value='0' /> </p><p style="display: none;"><input type="hidden" id="akismet_comment_nonce" name="akismet_comment_nonce" value="88e2f488aa" /></p><p style="display: none !important;" class="akismet-fields-container" data-prefix="ak_"><label>Δ<textarea name="ak_hp_textarea" cols="45" rows="8" maxlength="100"></textarea></label><input type="hidden" id="ak_js_1" name="ak_js" value="7"/><script>document.getElementById( "ak_js_1" ).setAttribute( "value", ( new Date() ).getTime() );</script></p></form> </div><!-- #respond --> </div><!-- #add-comment-block /--> </div><!-- .comments-area --> </div><!-- .post-components /--> </div><!-- .main-content --> <div id="check-also-box" class="container-wrapper check-also-right"> <div class="widget-title the-global-title"> <div class="the-subtitle">Check Also</div> <a href="#" id="check-also-close" class="remove"> <span class="screen-reader-text">Close</span> </a> </div> <div class="widget posts-list-big-first has-first-big-post"> <ul class="posts-list-items"> <li class="widget-single-post-item widget-post-list tie-standard"> <div class="post-widget-thumbnail"> <a aria-label="How I Develop Successful Link Building Strategies for My Clients" href="https://artanbiz.com/how-i-develop-successful-link-building-strategies-for-my-clients/" class="post-thumb"><span class="post-cat-wrap"><span class="post-cat tie-cat-32">seo</span></span><img width="390" height="300" src="https://artanbiz.com/wp-content/uploads/2024/07/how-i-develop-successful-link-building-strategies-for-my-clients_668d03eb823fa-390x300.png" class="attachment-jannah-image-large size-jannah-image-large wp-post-image" alt="" decoding="async" loading="lazy" /></a> </div><!-- post-alignleft /--> <div class="post-widget-body "> <a class="post-title the-subtitle" href="https://artanbiz.com/how-i-develop-successful-link-building-strategies-for-my-clients/">How I Develop Successful Link Building Strategies for My Clients</a> <div class="post-meta"> <span class="date meta-item tie-icon">July 9, 2024</span> </div> </div> </li> </ul><!-- .related-posts-list /--> </div> </div><!-- #related-posts /--> <aside class="sidebar tie-col-md-4 tie-col-xs-12 normal-side is-sticky" aria-label="Primary Sidebar"> <div class="theiaStickySidebar"> <div id="author_post_widget-4" class="container-wrapper widget widget_author_posts"><div class="widget-title the-global-title"><div class="the-subtitle">By Ali JalilPour</div></div><ul class="widget-posts-list"> <li class="widget-single-post-item widget-post-list tie-standard"> <div class="post-widget-thumbnail"> <a aria-label="Web hosting for SEO: Why it’s important" href="https://artanbiz.com/web-hosting-for-seo-why-its-important/" class="post-thumb"><img width="150" height="150" src="https://artanbiz.com/wp-content/uploads/2024/06/web-hosting-for-seo-why-its-important_667b9fdf0d381-150x150.jpeg" class="attachment-jannah-image-small size-jannah-image-small tie-small-image wp-post-image" alt="" decoding="async" loading="lazy" srcset="https://artanbiz.com/wp-content/uploads/2024/06/web-hosting-for-seo-why-its-important_667b9fdf0d381-150x150.jpeg 150w, https://artanbiz.com/wp-content/uploads/2024/06/web-hosting-for-seo-why-its-important_667b9fdf0d381-96x96.jpeg 96w" sizes="(max-width: 150px) 100vw, 150px" /></a> </div><!-- post-alignleft /--> <div class="post-widget-body "> <a class="post-title the-subtitle" href="https://artanbiz.com/web-hosting-for-seo-why-its-important/">Web hosting for SEO: Why it’s important</a> <div class="post-meta"> <span class="date meta-item tie-icon">July 11, 2024</span> </div> </div> </li> <li class="widget-single-post-item widget-post-list tie-standard"> <div class="post-widget-thumbnail"> <a aria-label="SEM career playbook: Overview of a growing industry" href="https://artanbiz.com/sem-career-playbook-overview-of-a-growing-industry/" class="post-thumb"><img width="150" height="150" src="https://artanbiz.com/wp-content/uploads/2024/06/sem-career-playbook-overview-of-a-growing-industry_667b9fda82946-150x150.jpeg" class="attachment-jannah-image-small size-jannah-image-small tie-small-image wp-post-image" alt="" decoding="async" loading="lazy" srcset="https://artanbiz.com/wp-content/uploads/2024/06/sem-career-playbook-overview-of-a-growing-industry_667b9fda82946-150x150.jpeg 150w, https://artanbiz.com/wp-content/uploads/2024/06/sem-career-playbook-overview-of-a-growing-industry_667b9fda82946-96x96.jpeg 96w" sizes="(max-width: 150px) 100vw, 150px" /></a> </div><!-- post-alignleft /--> <div class="post-widget-body "> <a class="post-title the-subtitle" href="https://artanbiz.com/sem-career-playbook-overview-of-a-growing-industry/">SEM career playbook: Overview of a growing industry</a> <div class="post-meta"> <span class="date meta-item tie-icon">July 11, 2024</span> </div> </div> </li> <li class="widget-single-post-item widget-post-list tie-standard"> <div class="post-widget-body no-small-thumbs"> <a class="post-title the-subtitle" href="https://artanbiz.com/what-is-seo-search-engine-optimization/">What Is SEO – Search Engine Optimization?</a> <div class="post-meta"> <span class="date meta-item tie-icon">July 11, 2024</span> </div> </div> </li> <li class="widget-single-post-item widget-post-list tie-standard"> <div class="post-widget-body no-small-thumbs"> <a class="post-title the-subtitle" href="https://artanbiz.com/what-is-ppc-pay-per-click-marketing/">What is PPC – Pay-Per-Click marketing?</a> <div class="post-meta"> <span class="date meta-item tie-icon">July 9, 2024</span> </div> </div> </li> <li class="widget-single-post-item widget-post-list tie-standard"> <div class="post-widget-thumbnail"> <a aria-label="Google Analytics 4 guide for PPC" href="https://artanbiz.com/google-analytics-4-guide-for-ppc/" class="post-thumb"><img width="150" height="150" src="https://artanbiz.com/wp-content/uploads/2024/06/google-analytics-4-guide-for-ppc_667babead33fe-150x150.jpeg" class="attachment-jannah-image-small size-jannah-image-small tie-small-image wp-post-image" alt="" decoding="async" loading="lazy" srcset="https://artanbiz.com/wp-content/uploads/2024/06/google-analytics-4-guide-for-ppc_667babead33fe-150x150.jpeg 150w, https://artanbiz.com/wp-content/uploads/2024/06/google-analytics-4-guide-for-ppc_667babead33fe-96x96.jpeg 96w" sizes="(max-width: 150px) 100vw, 150px" /></a> </div><!-- post-alignleft /--> <div class="post-widget-body "> <a class="post-title the-subtitle" href="https://artanbiz.com/google-analytics-4-guide-for-ppc/">Google Analytics 4 guide for PPC</a> <div class="post-meta"> <span class="date meta-item tie-icon">July 9, 2024</span> </div> </div> </li> </ul><a class="button fullwidth" href="https://artanbiz.com/author/admin/">All (7561)</a><div class="clearfix"></div></div><!-- .widget /--><div id="social-statistics-7" class="container-wrapper widget social-statistics-widget"><div class="widget-title the-global-title"><div class="the-subtitle">Follow Us</div></div> <ul class="solid-social-icons solid-social-icons circle-three-cols circle-icons Arqam-Lite"> <span class="theme-notice">Go to the Arqam options page to set your social accounts.</span> </ul> <div class="clearfix"></div></div><!-- .widget /--><div id="posts-list-widget-38" class="container-wrapper widget posts-list"><div class="widget-title the-global-title"><div class="the-subtitle">Popular Posts</div></div><div class="widget-posts-list-wrapper"><div class="widget-posts-list-container posts-list-counter media-overlay" ><ul class="posts-list-items widget-posts-wrapper"> <li class="widget-single-post-item widget-post-list tie-standard"> <div class="post-widget-thumbnail"> <a aria-label="SEM career playbook: Overview of a growing industry" href="https://artanbiz.com/sem-career-playbook-overview-of-a-growing-industry/" class="post-thumb"><img width="150" height="150" src="https://artanbiz.com/wp-content/uploads/2024/06/sem-career-playbook-overview-of-a-growing-industry_667b9fda82946-150x150.jpeg" class="attachment-jannah-image-small size-jannah-image-small tie-small-image wp-post-image" alt="" decoding="async" loading="lazy" srcset="https://artanbiz.com/wp-content/uploads/2024/06/sem-career-playbook-overview-of-a-growing-industry_667b9fda82946-150x150.jpeg 150w, https://artanbiz.com/wp-content/uploads/2024/06/sem-career-playbook-overview-of-a-growing-industry_667b9fda82946-96x96.jpeg 96w" sizes="(max-width: 150px) 100vw, 150px" /></a> </div><!-- post-alignleft /--> <div class="post-widget-body "> <a class="post-title the-subtitle" href="https://artanbiz.com/sem-career-playbook-overview-of-a-growing-industry/">SEM career playbook: Overview of a growing industry</a> <div class="post-meta"> <span class="date meta-item tie-icon">July 11, 2024</span> </div> </div> </li> <li class="widget-single-post-item widget-post-list tie-standard"> <div class="post-widget-body no-small-thumbs"> <a class="post-title the-subtitle" href="https://artanbiz.com/what-is-ppc-pay-per-click-marketing/">What is PPC – Pay-Per-Click marketing?</a> <div class="post-meta"> <span class="date meta-item tie-icon">July 9, 2024</span> </div> </div> </li> <li class="widget-single-post-item widget-post-list tie-standard"> <div class="post-widget-thumbnail"> <a aria-label="Face-off – 4 Ways to De-personalize Google" href="https://artanbiz.com/face-off-4-ways-to-de-personalize-google/" class="post-thumb"><img width="150" height="150" src="https://artanbiz.com/wp-content/uploads/2024/06/face-off-4-ways-to-de-personalize-google_66816b7cf3fcd-150x150.png" class="attachment-jannah-image-small size-jannah-image-small tie-small-image wp-post-image" alt="" decoding="async" loading="lazy" srcset="https://artanbiz.com/wp-content/uploads/2024/06/face-off-4-ways-to-de-personalize-google_66816b7cf3fcd-150x150.png 150w, https://artanbiz.com/wp-content/uploads/2024/06/face-off-4-ways-to-de-personalize-google_66816b7cf3fcd-96x96.png 96w" sizes="(max-width: 150px) 100vw, 150px" /></a> </div><!-- post-alignleft /--> <div class="post-widget-body "> <a class="post-title the-subtitle" href="https://artanbiz.com/face-off-4-ways-to-de-personalize-google/">Face-off – 4 Ways to De-personalize Google</a> <div class="post-meta"> <span class="date meta-item tie-icon">June 30, 2024</span> </div> </div> </li> <li class="widget-single-post-item widget-post-list tie-standard"> <div class="post-widget-thumbnail"> <a aria-label="How To Earn High-Authority Links That Drive Rankings" href="https://artanbiz.com/how-to-earn-high-authority-links-that-drive-rankings/" class="post-thumb"><img width="150" height="150" src="https://artanbiz.com/wp-content/uploads/2024/06/how-to-earn-high-authority-links-that-drive-rankings_667d41f1e9905-150x150.png" class="attachment-jannah-image-small size-jannah-image-small tie-small-image wp-post-image" alt="" decoding="async" loading="lazy" srcset="https://artanbiz.com/wp-content/uploads/2024/06/how-to-earn-high-authority-links-that-drive-rankings_667d41f1e9905-150x150.png 150w, https://artanbiz.com/wp-content/uploads/2024/06/how-to-earn-high-authority-links-that-drive-rankings_667d41f1e9905-96x96.png 96w" sizes="(max-width: 150px) 100vw, 150px" /></a> </div><!-- post-alignleft /--> <div class="post-widget-body "> <a class="post-title the-subtitle" href="https://artanbiz.com/how-to-earn-high-authority-links-that-drive-rankings/">How To Earn High-Authority Links That Drive Rankings</a> <div class="post-meta"> <span class="date meta-item tie-icon">June 27, 2024</span> </div> </div> </li> <li class="widget-single-post-item widget-post-list tie-standard"> <div class="post-widget-thumbnail"> <a aria-label="IMC Stockholm, Swedish Meatballs and New Friends" href="https://artanbiz.com/imc-stockholm-swedish-meatballs-and-new-friends/" class="post-thumb"><img width="150" height="150" src="https://artanbiz.com/wp-content/uploads/2024/07/imc-stockholm-swedish-meatballs-and-new-friends_66856ca77f9bf-150x150.jpeg" class="attachment-jannah-image-small size-jannah-image-small tie-small-image wp-post-image" alt="" decoding="async" loading="lazy" srcset="https://artanbiz.com/wp-content/uploads/2024/07/imc-stockholm-swedish-meatballs-and-new-friends_66856ca77f9bf-150x150.jpeg 150w, https://artanbiz.com/wp-content/uploads/2024/07/imc-stockholm-swedish-meatballs-and-new-friends_66856ca77f9bf-96x96.jpeg 96w" sizes="(max-width: 150px) 100vw, 150px" /></a> </div><!-- post-alignleft /--> <div class="post-widget-body "> <a class="post-title the-subtitle" href="https://artanbiz.com/imc-stockholm-swedish-meatballs-and-new-friends/">IMC Stockholm, Swedish Meatballs and New Friends</a> <div class="post-meta"> <span class="date meta-item tie-icon">July 3, 2024</span> </div> </div> </li> </ul></div></div><div class="clearfix"></div></div><!-- .widget /--> <div id="widget_tabs-5" class="container-wrapper tabs-container-wrapper tabs-container-4"> <div class="widget tabs-widget"> <div class="widget-container"> <div class="tabs-widget"> <div class="tabs-wrapper"> <ul class="tabs"> <li><a href="#widget_tabs-5-popular">Popular</a></li><li><a href="#widget_tabs-5-recent">Recent</a></li><li><a href="#widget_tabs-5-comments">Comments</a></li> </ul><!-- ul.tabs-menu /--> <div id="widget_tabs-5-popular" class="tab-content tab-content-popular"> <ul class="tab-content-elements"> <li class="widget-single-post-item widget-post-list tie-standard"> <div class="post-widget-thumbnail"> <a aria-label="SEM career playbook: Overview of a growing industry" href="https://artanbiz.com/sem-career-playbook-overview-of-a-growing-industry/" class="post-thumb"><img width="150" height="150" src="https://artanbiz.com/wp-content/uploads/2024/06/sem-career-playbook-overview-of-a-growing-industry_667b9fda82946-150x150.jpeg" class="attachment-jannah-image-small size-jannah-image-small tie-small-image wp-post-image" alt="" decoding="async" loading="lazy" srcset="https://artanbiz.com/wp-content/uploads/2024/06/sem-career-playbook-overview-of-a-growing-industry_667b9fda82946-150x150.jpeg 150w, https://artanbiz.com/wp-content/uploads/2024/06/sem-career-playbook-overview-of-a-growing-industry_667b9fda82946-96x96.jpeg 96w" sizes="(max-width: 150px) 100vw, 150px" /></a> </div><!-- post-alignleft /--> <div class="post-widget-body "> <a class="post-title the-subtitle" href="https://artanbiz.com/sem-career-playbook-overview-of-a-growing-industry/">SEM career playbook: Overview of a growing industry</a> <div class="post-meta"> <span class="date meta-item tie-icon">July 11, 2024</span> </div> </div> </li> <li class="widget-single-post-item widget-post-list tie-standard"> <div class="post-widget-body no-small-thumbs"> <a class="post-title the-subtitle" href="https://artanbiz.com/what-is-ppc-pay-per-click-marketing/">What is PPC – Pay-Per-Click marketing?</a> <div class="post-meta"> <span class="date meta-item tie-icon">July 9, 2024</span> </div> </div> </li> <li class="widget-single-post-item widget-post-list tie-standard"> <div class="post-widget-thumbnail"> <a aria-label="Face-off – 4 Ways to De-personalize Google" href="https://artanbiz.com/face-off-4-ways-to-de-personalize-google/" class="post-thumb"><img width="150" height="150" src="https://artanbiz.com/wp-content/uploads/2024/06/face-off-4-ways-to-de-personalize-google_66816b7cf3fcd-150x150.png" class="attachment-jannah-image-small size-jannah-image-small tie-small-image wp-post-image" alt="" decoding="async" loading="lazy" srcset="https://artanbiz.com/wp-content/uploads/2024/06/face-off-4-ways-to-de-personalize-google_66816b7cf3fcd-150x150.png 150w, https://artanbiz.com/wp-content/uploads/2024/06/face-off-4-ways-to-de-personalize-google_66816b7cf3fcd-96x96.png 96w" sizes="(max-width: 150px) 100vw, 150px" /></a> </div><!-- post-alignleft /--> <div class="post-widget-body "> <a class="post-title the-subtitle" href="https://artanbiz.com/face-off-4-ways-to-de-personalize-google/">Face-off – 4 Ways to De-personalize Google</a> <div class="post-meta"> <span class="date meta-item tie-icon">June 30, 2024</span> </div> </div> </li> <li class="widget-single-post-item widget-post-list tie-standard"> <div class="post-widget-thumbnail"> <a aria-label="How To Earn High-Authority Links That Drive Rankings" href="https://artanbiz.com/how-to-earn-high-authority-links-that-drive-rankings/" class="post-thumb"><img width="150" height="150" src="https://artanbiz.com/wp-content/uploads/2024/06/how-to-earn-high-authority-links-that-drive-rankings_667d41f1e9905-150x150.png" class="attachment-jannah-image-small size-jannah-image-small tie-small-image wp-post-image" alt="" decoding="async" loading="lazy" srcset="https://artanbiz.com/wp-content/uploads/2024/06/how-to-earn-high-authority-links-that-drive-rankings_667d41f1e9905-150x150.png 150w, https://artanbiz.com/wp-content/uploads/2024/06/how-to-earn-high-authority-links-that-drive-rankings_667d41f1e9905-96x96.png 96w" sizes="(max-width: 150px) 100vw, 150px" /></a> </div><!-- post-alignleft /--> <div class="post-widget-body "> <a class="post-title the-subtitle" href="https://artanbiz.com/how-to-earn-high-authority-links-that-drive-rankings/">How To Earn High-Authority Links That Drive Rankings</a> <div class="post-meta"> <span class="date meta-item tie-icon">June 27, 2024</span> </div> </div> </li> <li class="widget-single-post-item widget-post-list tie-standard"> <div class="post-widget-thumbnail"> <a aria-label="IMC Stockholm, Swedish Meatballs and New Friends" href="https://artanbiz.com/imc-stockholm-swedish-meatballs-and-new-friends/" class="post-thumb"><img width="150" height="150" src="https://artanbiz.com/wp-content/uploads/2024/07/imc-stockholm-swedish-meatballs-and-new-friends_66856ca77f9bf-150x150.jpeg" class="attachment-jannah-image-small size-jannah-image-small tie-small-image wp-post-image" alt="" decoding="async" loading="lazy" srcset="https://artanbiz.com/wp-content/uploads/2024/07/imc-stockholm-swedish-meatballs-and-new-friends_66856ca77f9bf-150x150.jpeg 150w, https://artanbiz.com/wp-content/uploads/2024/07/imc-stockholm-swedish-meatballs-and-new-friends_66856ca77f9bf-96x96.jpeg 96w" sizes="(max-width: 150px) 100vw, 150px" /></a> </div><!-- post-alignleft /--> <div class="post-widget-body "> <a class="post-title the-subtitle" href="https://artanbiz.com/imc-stockholm-swedish-meatballs-and-new-friends/">IMC Stockholm, Swedish Meatballs and New Friends</a> <div class="post-meta"> <span class="date meta-item tie-icon">July 3, 2024</span> </div> </div> </li> </ul> </div><!-- .tab-content#popular-posts-tab /--> <div id="widget_tabs-5-recent" class="tab-content tab-content-recent"> <ul class="tab-content-elements"> <li class="widget-single-post-item widget-post-list tie-standard"> <div class="post-widget-thumbnail"> <a aria-label="Web hosting for SEO: Why it’s important" href="https://artanbiz.com/web-hosting-for-seo-why-its-important/" class="post-thumb"><img width="150" height="150" src="https://artanbiz.com/wp-content/uploads/2024/06/web-hosting-for-seo-why-its-important_667b9fdf0d381-150x150.jpeg" class="attachment-jannah-image-small size-jannah-image-small tie-small-image wp-post-image" alt="" decoding="async" loading="lazy" srcset="https://artanbiz.com/wp-content/uploads/2024/06/web-hosting-for-seo-why-its-important_667b9fdf0d381-150x150.jpeg 150w, https://artanbiz.com/wp-content/uploads/2024/06/web-hosting-for-seo-why-its-important_667b9fdf0d381-96x96.jpeg 96w" sizes="(max-width: 150px) 100vw, 150px" /></a> </div><!-- post-alignleft /--> <div class="post-widget-body "> <a class="post-title the-subtitle" href="https://artanbiz.com/web-hosting-for-seo-why-its-important/">Web hosting for SEO: Why it’s important</a> <div class="post-meta"> <span class="date meta-item tie-icon">July 11, 2024</span> </div> </div> </li> <li class="widget-single-post-item widget-post-list tie-standard"> <div class="post-widget-thumbnail"> <a aria-label="SEM career playbook: Overview of a growing industry" href="https://artanbiz.com/sem-career-playbook-overview-of-a-growing-industry/" class="post-thumb"><img width="150" height="150" src="https://artanbiz.com/wp-content/uploads/2024/06/sem-career-playbook-overview-of-a-growing-industry_667b9fda82946-150x150.jpeg" class="attachment-jannah-image-small size-jannah-image-small tie-small-image wp-post-image" alt="" decoding="async" loading="lazy" srcset="https://artanbiz.com/wp-content/uploads/2024/06/sem-career-playbook-overview-of-a-growing-industry_667b9fda82946-150x150.jpeg 150w, https://artanbiz.com/wp-content/uploads/2024/06/sem-career-playbook-overview-of-a-growing-industry_667b9fda82946-96x96.jpeg 96w" sizes="(max-width: 150px) 100vw, 150px" /></a> </div><!-- post-alignleft /--> <div class="post-widget-body "> <a class="post-title the-subtitle" href="https://artanbiz.com/sem-career-playbook-overview-of-a-growing-industry/">SEM career playbook: Overview of a growing industry</a> <div class="post-meta"> <span class="date meta-item tie-icon">July 11, 2024</span> </div> </div> </li> <li class="widget-single-post-item widget-post-list tie-standard"> <div class="post-widget-body no-small-thumbs"> <a class="post-title the-subtitle" href="https://artanbiz.com/what-is-seo-search-engine-optimization/">What Is SEO – Search Engine Optimization?</a> <div class="post-meta"> <span class="date meta-item tie-icon">July 11, 2024</span> </div> </div> </li> <li class="widget-single-post-item widget-post-list tie-standard"> <div class="post-widget-body no-small-thumbs"> <a class="post-title the-subtitle" href="https://artanbiz.com/what-is-ppc-pay-per-click-marketing/">What is PPC – Pay-Per-Click marketing?</a> <div class="post-meta"> <span class="date meta-item tie-icon">July 9, 2024</span> </div> </div> </li> <li class="widget-single-post-item widget-post-list tie-standard"> <div class="post-widget-thumbnail"> <a aria-label="Google Analytics 4 guide for PPC" href="https://artanbiz.com/google-analytics-4-guide-for-ppc/" class="post-thumb"><img width="150" height="150" src="https://artanbiz.com/wp-content/uploads/2024/06/google-analytics-4-guide-for-ppc_667babead33fe-150x150.jpeg" class="attachment-jannah-image-small size-jannah-image-small tie-small-image wp-post-image" alt="" decoding="async" loading="lazy" srcset="https://artanbiz.com/wp-content/uploads/2024/06/google-analytics-4-guide-for-ppc_667babead33fe-150x150.jpeg 150w, https://artanbiz.com/wp-content/uploads/2024/06/google-analytics-4-guide-for-ppc_667babead33fe-96x96.jpeg 96w" sizes="(max-width: 150px) 100vw, 150px" /></a> </div><!-- post-alignleft /--> <div class="post-widget-body "> <a class="post-title the-subtitle" href="https://artanbiz.com/google-analytics-4-guide-for-ppc/">Google Analytics 4 guide for PPC</a> <div class="post-meta"> <span class="date meta-item tie-icon">July 9, 2024</span> </div> </div> </li> </ul> </div><!-- .tab-content#recent-posts-tab /--> <div id="widget_tabs-5-comments" class="tab-content tab-content-comments"> <ul class="tab-content-elements"> </ul> </div><!-- .tab-content#comments-tab /--> </div><!-- .tabs-wrapper-animated /--> </div><!-- .tabs-widget /--> </div><!-- .widget-container /--> </div><!-- .tabs-widget /--> </div><!-- .container-wrapper /--> <div id="tie-widget-categories-13" class="container-wrapper widget widget_categories tie-widget-categories"><div class="widget-title the-global-title"><div class="the-subtitle">Categories</div></div><ul> <li class="cat-item cat-counter tie-cat-item-32"><a href="https://artanbiz.com/category/seo/">seo</a> <span>7,545</span> </li> <li class="cat-item cat-counter tie-cat-item-92"><a href="https://artanbiz.com/category/content-marketing/">Content Marketing</a> <span>13</span> </li> <li class="cat-item cat-counter tie-cat-item-91"><a href="https://artanbiz.com/category/ppc/">PPC</a> <span>3</span> </li> </ul><div class="clearfix"></div></div><!-- .widget /--><div id="stream-item-widget-8" class="widget stream-item-widget widget-content-only"><div class="stream-item-widget-content"><a href="#" target="_blank" rel="nofollow noopener"><img class="widget-stream-image" src="https://via.placeholder.com/672x1344" width="336" height="280" alt=""></a></div></div> </div><!-- .theiaStickySidebar /--> </aside><!-- .sidebar /--> </div><!-- .main-content-row /--></div><!-- #content /--><div id="web_stories_before_footer" class="container web-stories-section"> <div class="web-stories-list alignnone web-stories-list-block is-view-type-circles is-style-default is-carousel" data-id="1"> <div class="web-stories-list__inner-wrapper carousel-1" style="--ws-circle-size:100px"> <div class="web-stories-list__carousel circles" data-id="carousel-1"> <div class="web-stories-list__story"> <div class="web-stories-list__story-poster"> <a href="https://artanbiz.com/web-stories/1036/" > <img src="https://artanbiz.com/wp-content/uploads/2023/02/cropped-4.jpg" alt="" width="185" height="308" srcset="https://artanbiz.com/wp-content/uploads/2023/02/cropped-4.jpg 640w, https://artanbiz.com/wp-content/uploads/2023/02/cropped-4-225x300.jpg 225w, https://artanbiz.com/wp-content/uploads/2023/02/cropped-4-150x200.jpg 150w" sizes="(max-width: 640px) 100vw, 640px" loading="lazy" decoding="async" > </a> </div> </div> <div class="web-stories-list__story"> <div class="web-stories-list__story-poster"> <a href="https://artanbiz.com/web-stories/1031/" > <img src="https://artanbiz.com/wp-content/uploads/2023/02/cropped-3.jpg" alt="" width="185" height="308" srcset="https://artanbiz.com/wp-content/uploads/2023/02/cropped-3.jpg 640w, https://artanbiz.com/wp-content/uploads/2023/02/cropped-3-225x300.jpg 225w, https://artanbiz.com/wp-content/uploads/2023/02/cropped-3-150x200.jpg 150w" sizes="(max-width: 640px) 100vw, 640px" loading="lazy" decoding="async" > </a> </div> </div> <div class="web-stories-list__story"> <div class="web-stories-list__story-poster"> <a href="https://artanbiz.com/web-stories/1027/" > <img src="https://artanbiz.com/wp-content/uploads/2023/02/cropped-2.jpg" alt="" width="185" height="308" srcset="https://artanbiz.com/wp-content/uploads/2023/02/cropped-2.jpg 640w, https://artanbiz.com/wp-content/uploads/2023/02/cropped-2-225x300.jpg 225w, https://artanbiz.com/wp-content/uploads/2023/02/cropped-2-150x200.jpg 150w" sizes="(max-width: 640px) 100vw, 640px" loading="lazy" decoding="async" > </a> </div> </div> <div class="web-stories-list__story"> <div class="web-stories-list__story-poster"> <a href="https://artanbiz.com/web-stories/1023/" > <img src="https://artanbiz.com/wp-content/uploads/2023/02/cropped-11.jpg" alt="" width="185" height="308" srcset="https://artanbiz.com/wp-content/uploads/2023/02/cropped-11.jpg 640w, https://artanbiz.com/wp-content/uploads/2023/02/cropped-11-225x300.jpg 225w, https://artanbiz.com/wp-content/uploads/2023/02/cropped-11-150x200.jpg 150w" sizes="(max-width: 640px) 100vw, 640px" loading="lazy" decoding="async" > </a> </div> </div> </div> <div tabindex="0" aria-label="Previous" class="glider-prev"></div> <div tabindex="0" aria-label="Next" class="glider-next"></div> </div> </div> </div> <footer id="footer" class="site-footer dark-skin dark-widgetized-area"> <div id="footer-widgets-container"> <div class="container"> <div class="footer-widget-area "> <div class="tie-row"> <div class="tie-col-sm-4 normal-side"> <div id="author-bio-widget-8" class="container-wrapper widget aboutme-widget"> <div class="about-author about-content-wrapper is-centered"><img alt="" src="https://via.placeholder.com/267x88" style="margin-top: 45px; width: 267px; height: 88px;" class="about-author-img" width="280" height="47"> <div class="aboutme-widget-content"> </div> <div class="clearfix"></div> </div><!-- .about-widget-content --> <div class="clearfix"></div></div><!-- .widget /--> </div><!-- .tie-col /--> <div class="tie-col-sm-4 normal-side"> <div id="author-bio-widget-9" class="container-wrapper widget aboutme-widget"><div class="widget-title the-global-title"><div class="the-subtitle">About Jannah SEO</div></div> <div class="about-author about-content-wrapper"> <div class="aboutme-widget-content">Jannah is a Clean Responsive WordPress Newspaper, Magazine, News and Blog theme. Packed with options that allow you to completely customize your website to your needs. </div> <div class="clearfix"></div> </div><!-- .about-widget-content --> <div class="clearfix"></div></div><!-- .widget /--> </div><!-- .tie-col /--> <div class="tie-col-sm-4 normal-side"> <div id="latest_tweets_widget-5" class="container-wrapper widget latest-tweets-widget"><div class="widget-title the-global-title"><div class="the-subtitle"><a href="https://twitter.com/google" rel="nofollow noopener">@Follow Us</a></div></div><span class="theme-notice">Error Can not Get Posts, Incorrect account info.</span><div class="clearfix"></div></div><!-- .widget /--> </div><!-- .tie-col /--> <div class=" normal-side"> </div><!-- .tie-col /--> </div><!-- .tie-row /--> </div><!-- .footer-widget-area /--> <div class="footer-widget-area "> <div class="tie-row"> <div class="tie-col-md-3 normal-side"> <div id="posts-list-widget-34" class="container-wrapper widget posts-list"><div class="widget-title the-global-title"><div class="the-subtitle">Recent Topics</div></div><div class="widget-posts-list-wrapper"><div class="widget-posts-list-container timeline-widget" ><ul class="posts-list-items widget-posts-wrapper"> <li class="widget-single-post-item"> <a href="https://artanbiz.com/web-hosting-for-seo-why-its-important/"> <span class="date meta-item tie-icon">July 11, 2024</span> <h3>Web hosting for SEO: Why it’s important</h3> </a> </li> <li class="widget-single-post-item"> <a href="https://artanbiz.com/sem-career-playbook-overview-of-a-growing-industry/"> <span class="date meta-item tie-icon">July 11, 2024</span> <h3>SEM career playbook: Overview of a growing industry</h3> </a> </li> <li class="widget-single-post-item"> <a href="https://artanbiz.com/what-is-seo-search-engine-optimization/"> <span class="date meta-item tie-icon">July 11, 2024</span> <h3>What Is SEO – Search Engine Optimization?</h3> </a> </li> </ul></div></div><div class="clearfix"></div></div><!-- .widget /--> </div><!-- .tie-col /--> <div class="tie-col-md-3 normal-side"> <div id="posts-list-widget-35" class="container-wrapper widget posts-list"><div class="widget-title the-global-title"><div class="the-subtitle">Most Popular Topics</div></div><div class="widget-posts-list-wrapper"><div class="widget-posts-list-container timeline-widget" ><ul class="posts-list-items widget-posts-wrapper"> <li class="widget-single-post-item"> <a href="https://artanbiz.com/testing-googlebot-visit-frequency/"> <span class="date meta-item tie-icon">June 30, 2024</span> <h3>Testing Googlebot Visit Frequency</h3> </a> </li> <li class="widget-single-post-item"> <a href="https://artanbiz.com/personality-analysis-the-makings-of-an-seo/"> <span class="date meta-item tie-icon">July 3, 2024</span> <h3>Personality Analysis: The Makings of an SEO</h3> </a> </li> <li class="widget-single-post-item"> <a href="https://artanbiz.com/tips-for-real-world-marketing-from-searchlove-and-linklove/"> <span class="date meta-item tie-icon">June 27, 2024</span> <h3>Tips for Real-World Marketing from SearchLove and LinkLove</h3> </a> </li> </ul></div></div><div class="clearfix"></div></div><!-- .widget /--> </div><!-- .tie-col /--> <div class="tie-col-md-3 normal-side"> <div id="posts-list-widget-36" class="container-wrapper widget posts-list"><div class="widget-title the-global-title"><div class="the-subtitle">Last Modified Topics</div></div><div class="widget-posts-list-wrapper"><div class="widget-posts-list-container timeline-widget" ><ul class="posts-list-items widget-posts-wrapper"> <li class="widget-single-post-item"> <a href="https://artanbiz.com/how-i-develop-successful-link-building-strategies-for-my-clients/"> <span class="date meta-item tie-icon">July 9, 2024</span> <h3>How I Develop Successful Link Building Strategies for My Clients</h3> </a> </li> <li class="widget-single-post-item"> <a href="https://artanbiz.com/optimizing-for-ai-overviews/"> <span class="date meta-item tie-icon">July 8, 2024</span> <h3>Optimizing for AI Overviews</h3> </a> </li> <li class="widget-single-post-item"> <a href="https://artanbiz.com/my-top-5-local-seo-and-marketing-takeaways-from-mozcon-2024/"> <span class="date meta-item tie-icon">July 8, 2024</span> <h3>My Top 5 Local SEO and Marketing Takeaways From MozCon 2024</h3> </a> </li> </ul></div></div><div class="clearfix"></div></div><!-- .widget /--> </div><!-- .tie-col /--> <div class="tie-col-md-3 normal-side"> <div id="posts-list-widget-37" class="container-wrapper widget posts-list"><div class="widget-title the-global-title"><div class="the-subtitle">Most Viewed Topics</div></div><div class="widget-posts-list-wrapper"><div class="widget-posts-list-container timeline-widget" ><ul class="posts-list-items widget-posts-wrapper"> <li class="widget-single-post-item"> <a href="https://artanbiz.com/excel-for-seos-manipulating-url-strings-with-functions/"> <span class="date meta-item tie-icon">June 30, 2024</span> <h3>Excel For SEOs: Manipulating URL Strings with Functions</h3> </a> </li> <li class="widget-single-post-item"> <a href="https://artanbiz.com/what-is-seo-search-engine-optimization/"> <span class="date meta-item tie-icon">July 11, 2024</span> <h3>What Is SEO – Search Engine Optimization?</h3> </a> </li> <li class="widget-single-post-item"> <a href="https://artanbiz.com/top-seo-tips-for-2024-whiteboard-friday/"> <span class="date meta-item tie-icon">June 26, 2024</span> <h3>Top SEO Tips for 2024 β€” Whiteboard Friday</h3> </a> </li> </ul></div></div><div class="clearfix"></div></div><!-- .widget /--> </div><!-- .tie-col /--> </div><!-- .tie-row /--> </div><!-- .footer-widget-area /--> </div><!-- .container /--> </div><!-- #Footer-widgets-container /--> <div id="site-info" class="site-info site-info-layout-2"> <div class="container"> <div class="tie-row"> <div class="tie-col-md-12"> <div class="copyright-text copyright-text-first">© Copyright 2024, All Rights Reserved | Proudly Hosted by <a href="https://tielabs.com/go/jnhstgr/" target="_blank" rel="nofollow noopener">SiteGround</a></div><div class="footer-menu"><ul id="menu-tielabs-secondry-menu" class="menu"><li id="menu-item-1967" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-home menu-item-1967"><a href="https://artanbiz.com/">Home</a></li> <li id="menu-item-1968" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1968"><a href="#">About</a></li> <li id="menu-item-1969" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1969"><a href="#">Team</a></li> <li id="menu-item-1970" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-1970"><a href="https://artanbiz.com/category/tie-world/">World</a></li> <li id="menu-item-1971" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-1971"><a href="https://artanbiz.com/category/tie-tech/">Tech</a></li> <li id="menu-item-1972" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1972"><a title="Buy now!" href="https://tielabs.com/buy/jannah?utm_source=demo-content&utm_medium=link&utm_campaign=jannah&utm_content=secondry-menu">Buy now!</a></li> </ul></div><ul class="social-icons"><li class="social-icons-item"><a class="social-link facebook-social-icon" rel="external noopener nofollow" target="_blank" href="#"><span class="tie-social-icon tie-icon-facebook"></span><span class="screen-reader-text">Facebook</span></a></li><li class="social-icons-item"><a class="social-link twitter-social-icon" rel="external noopener nofollow" target="_blank" href="#"><span class="tie-social-icon tie-icon-twitter"></span><span class="screen-reader-text">X</span></a></li><li class="social-icons-item"><a class="social-link youtube-social-icon" rel="external noopener nofollow" target="_blank" href="#"><span class="tie-social-icon tie-icon-youtube"></span><span class="screen-reader-text">YouTube</span></a></li><li class="social-icons-item"><a class="social-link instagram-social-icon" rel="external noopener nofollow" target="_blank" href="#"><span class="tie-social-icon tie-icon-instagram"></span><span class="screen-reader-text">Instagram</span></a></li></ul> </div><!-- .tie-col /--> </div><!-- .tie-row /--> </div><!-- .container /--> </div><!-- #site-info /--> </footer><!-- #footer /--> <div id="share-buttons-mobile" class="share-buttons share-buttons-mobile"> <div class="share-links icons-only"> <a href="https://www.facebook.com/sharer.php?u=https://artanbiz.com/dynamic-landing-pages-optimizing-for-natural-search/" rel="external noopener nofollow" title="Facebook" target="_blank" class="facebook-share-btn " data-raw="https://www.facebook.com/sharer.php?u={post_link}"> <span class="share-btn-icon tie-icon-facebook"></span> <span class="screen-reader-text">Facebook</span> </a> <a href="https://twitter.com/intent/tweet?text=Dynamic%20Landing%20Pages%3A%20Optimizing%20for%20Natural%20Search&url=https://artanbiz.com/dynamic-landing-pages-optimizing-for-natural-search/" rel="external noopener nofollow" title="X" target="_blank" class="twitter-share-btn " data-raw="https://twitter.com/intent/tweet?text={post_title}&url={post_link}"> <span class="share-btn-icon tie-icon-twitter"></span> <span class="screen-reader-text">X</span> </a> <a href="https://reddit.com/submit?url=https://artanbiz.com/dynamic-landing-pages-optimizing-for-natural-search/&title=Dynamic%20Landing%20Pages%3A%20Optimizing%20for%20Natural%20Search" rel="external noopener nofollow" title="Reddit" target="_blank" class="reddit-share-btn " data-raw="https://reddit.com/submit?url={post_link}&title={post_title}"> <span class="share-btn-icon tie-icon-reddit"></span> <span class="screen-reader-text">Reddit</span> </a> <a href="https://api.whatsapp.com/send?text=Dynamic%20Landing%20Pages%3A%20Optimizing%20for%20Natural%20Search%20https://artanbiz.com/dynamic-landing-pages-optimizing-for-natural-search/" rel="external noopener nofollow" title="WhatsApp" target="_blank" class="whatsapp-share-btn " data-raw="https://api.whatsapp.com/send?text={post_title}%20{post_link}"> <span class="share-btn-icon tie-icon-whatsapp"></span> <span class="screen-reader-text">WhatsApp</span> </a> <a href="https://telegram.me/share/url?url=https://artanbiz.com/dynamic-landing-pages-optimizing-for-natural-search/&text=Dynamic%20Landing%20Pages%3A%20Optimizing%20for%20Natural%20Search" rel="external noopener nofollow" title="Telegram" target="_blank" class="telegram-share-btn " data-raw="https://telegram.me/share/url?url={post_link}&text={post_title}"> <span class="share-btn-icon tie-icon-paper-plane"></span> <span class="screen-reader-text">Telegram</span> </a> <a href="viber://forward?text=Dynamic%20Landing%20Pages%3A%20Optimizing%20for%20Natural%20Search%20https://artanbiz.com/dynamic-landing-pages-optimizing-for-natural-search/" rel="external noopener nofollow" title="Viber" target="_blank" class="viber-share-btn " data-raw="viber://forward?text={post_title}%20{post_link}"> <span class="share-btn-icon tie-icon-phone"></span> <span class="screen-reader-text">Viber</span> </a> </div><!-- .share-links /--> </div><!-- .share-buttons /--> <div class="mobile-share-buttons-spacer"></div> <a id="go-to-top" class="go-to-top-button" href="#go-to-tie-body"> <span class="tie-icon-angle-up"></span> <span class="screen-reader-text">Back to top button</span> </a> </div><!-- #tie-wrapper /--> <aside class=" side-aside normal-side dark-skin dark-widgetized-area is-fullwidth appear-from-right" aria-label="Secondary Sidebar" style="visibility: hidden;"> <div data-height="100%" class="side-aside-wrapper has-custom-scroll"> <a href="#" class="close-side-aside remove big-btn"> <span class="screen-reader-text">Close</span> </a><!-- .close-side-aside /--> <div id="mobile-container"> <div id="mobile-menu" class="hide-menu-icons"> </div><!-- #mobile-menu /--> <div id="mobile-social-icons" class="social-icons-widget solid-social-icons"> <ul><li class="social-icons-item"><a class="social-link facebook-social-icon" rel="external noopener nofollow" target="_blank" href="#"><span class="tie-social-icon tie-icon-facebook"></span><span class="screen-reader-text">Facebook</span></a></li><li class="social-icons-item"><a class="social-link twitter-social-icon" rel="external noopener nofollow" target="_blank" href="#"><span class="tie-social-icon tie-icon-twitter"></span><span class="screen-reader-text">X</span></a></li><li class="social-icons-item"><a class="social-link youtube-social-icon" rel="external noopener nofollow" target="_blank" href="#"><span class="tie-social-icon tie-icon-youtube"></span><span class="screen-reader-text">YouTube</span></a></li><li class="social-icons-item"><a class="social-link instagram-social-icon" rel="external noopener nofollow" target="_blank" href="#"><span class="tie-social-icon tie-icon-instagram"></span><span class="screen-reader-text">Instagram</span></a></li></ul> </div><!-- #mobile-social-icons /--> <div id="mobile-search"> <div class="asp_w_container asp_w_container_1 asp_w_container_1_1" data-id="1"><div class='asp_w asp_m asp_m_1 asp_m_1_1 wpdreams_asp_sc wpdreams_asp_sc-1 ajaxsearchpro asp_main_container asp_non_compact' data-id="1" data-name="Main Search" data-instance="1" id='ajaxsearchpro1_1'><div class="probox"><div class='prosettings' style='display:none;' data-opened=0><div class='innericon'><svg xmlns="http://www.w3.org/2000/svg" width="22" height="22" viewBox="0 0 512 512"><path d="M170 294c0 33.138-26.862 60-60 60-33.137 0-60-26.862-60-60 0-33.137 26.863-60 60-60 33.138 0 60 26.863 60 60zm-60 90c-6.872 0-13.565-.777-20-2.243V422c0 11.046 8.954 20 20 20s20-8.954 20-20v-40.243c-6.435 1.466-13.128 2.243-20 2.243zm0-180c6.872 0 13.565.777 20 2.243V90c0-11.046-8.954-20-20-20s-20 8.954-20 20v116.243c6.435-1.466 13.128-2.243 20-2.243zm146-7c12.13 0 22 9.87 22 22s-9.87 22-22 22-22-9.87-22-22 9.87-22 22-22zm0-38c-33.137 0-60 26.863-60 60 0 33.138 26.863 60 60 60 33.138 0 60-26.862 60-60 0-33.137-26.862-60-60-60zm0-30c6.872 0 13.565.777 20 2.243V90c0-11.046-8.954-20-20-20s-20 8.954-20 20v41.243c6.435-1.466 13.128-2.243 20-2.243zm0 180c-6.872 0-13.565-.777-20-2.243V422c0 11.046 8.954 20 20 20s20-8.954 20-20V306.757c-6.435 1.466-13.128 2.243-20 2.243zm146-75c-33.137 0-60 26.863-60 60 0 33.138 26.863 60 60 60 33.138 0 60-26.862 60-60 0-33.137-26.862-60-60-60zm0-30c6.872 0 13.565.777 20 2.243V90c0-11.046-8.954-20-20-20s-20 8.954-20 20v116.243c6.435-1.466 13.128-2.243 20-2.243zm0 180c-6.872 0-13.565-.777-20-2.243V422c0 11.046 8.954 20 20 20s20-8.954 20-20v-40.243c-6.435 1.466-13.128 2.243-20 2.243z"/></svg></div></div><div class='proinput'><form role="search" action='#' autocomplete="off" aria-label="Search form"><input type='search' class='orig' placeholder='Search here...' name='phrase' value='' aria-label="Search input" autocomplete="off"/><input type='text' class='autocomplete' name='phrase' value='' aria-label="Search autocomplete input" aria-hidden="true" tabindex="-1" autocomplete="off" disabled/></form></div><button class='promagnifier' aria-label="Search magnifier button"><span class='asp_text_button hiddend'> Search </span><span class='innericon'><svg xmlns="http://www.w3.org/2000/svg" width="22" height="22" viewBox="0 0 512 512"><path d="M460.355 421.59l-106.51-106.512c20.04-27.553 31.884-61.437 31.884-98.037C385.73 124.935 310.792 50 218.685 50c-92.106 0-167.04 74.934-167.04 167.04 0 92.107 74.935 167.042 167.04 167.042 34.912 0 67.352-10.773 94.184-29.158L419.945 462l40.41-40.41zM100.63 217.04c0-65.095 52.96-118.055 118.056-118.055 65.098 0 118.057 52.96 118.057 118.056 0 65.097-52.96 118.057-118.057 118.057-65.096 0-118.055-52.96-118.055-118.056z"/></svg></span><span class="asp_clear"></span></button><div class='proloading'><div class="asp_loader"><div class="asp_loader-inner asp_simple-circle"></div></div></div><div class='proclose'><svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="512px" height="512px" viewBox="0 0 512 512" enable-background="new 0 0 512 512" xml:space="preserve"><polygon points="438.393,374.595 319.757,255.977 438.378,137.348 374.595,73.607 255.995,192.225 137.375,73.622 73.607,137.352 192.246,255.983 73.622,374.625 137.352,438.393 256.002,319.734 374.652,438.378 "/></svg></div></div></div><div class='asp_data_container' style="display:none !important;"><div class="asp_init_data" style="display:none !important;" id="asp_init_id_1_1" data-asp-id="1" data-asp-instance="1" data-aspdata="eyJob21ldXJsIjoiaHR0cHM6XC9cL2FydGFuYml6LmNvbVwvIiwiaXNfcmVzdWx0c19wYWdlIjowLCJyZXN1bHRzdHlwZSI6InZlcnRpY2FsIiwicmVzdWx0c3Bvc2l0aW9uIjoiaG92ZXIiLCJyZXN1bHRzU25hcFRvIjoibGVmdCIsInJlc3VsdHMiOnsid2lkdGgiOiJhdXRvIiwid2lkdGhfdGFibGV0IjoiYXV0byIsIndpZHRoX3Bob25lIjoiYXV0byJ9LCJpdGVtc2NvdW50Ijo0LCJjaGFyY291bnQiOjAsImhpZ2hsaWdodCI6MCwiaGlnaGxpZ2h0V2hvbGV3b3JkcyI6MSwic2luZ2xlSGlnaGxpZ2h0IjowLCJzY3JvbGxUb1Jlc3VsdHMiOnsiZW5hYmxlZCI6MCwib2Zmc2V0IjowfSwiYXV0b2NvbXBsZXRlIjp7ImVuYWJsZWQiOjEsInRyaWdnZXJfY2hhcmNvdW50IjowLCJnb29nbGVPbmx5IjoxLCJsYW5nIjoiZW4iLCJtb2JpbGUiOjF9LCJ0cmlnZ2VyIjp7ImRlbGF5IjozMDAsImF1dG9jb21wbGV0ZV9kZWxheSI6MzEwLCJ1cGRhdGVfaHJlZiI6MCwiZmFjZXQiOjEsInR5cGUiOjEsImNsaWNrIjoicmVzdWx0c19wYWdlIiwiY2xpY2tfbG9jYXRpb24iOiJzYW1lIiwicmV0dXJuIjoicmVzdWx0c19wYWdlIiwicmV0dXJuX2xvY2F0aW9uIjoic2FtZSIsInJlZGlyZWN0X3VybCI6Ij9zPXtwaHJhc2V9IiwiZWxlbWVudG9yX3VybCI6Imh0dHBzOlwvXC9hcnRhbmJpei5jb21cLz9hc3BfbHM9e3BocmFzZX0ifSwib3ZlcnJpZGV3cGRlZmF1bHQiOjEsIm92ZXJyaWRlX21ldGhvZCI6ImdldCIsInNldHRpbmdzIjp7InVuc2VsZWN0Q2hpbGRyZW4iOjEsImhpZGVDaGlsZHJlbiI6MH0sInNldHRpbmdzaW1hZ2Vwb3MiOiJyaWdodCIsInNldHRpbmdzVmlzaWJsZSI6MCwic2V0dGluZ3NIaWRlT25SZXMiOjAsInByZXNjb250YWluZXJoZWlnaHQiOiI0MDBweCIsImNsb3NlT25Eb2NDbGljayI6MSwiZm9jdXNPblBhZ2Vsb2FkIjowLCJpc290b3BpYyI6eyJpdGVtV2lkdGgiOiIyMDBweCIsIml0ZW1XaWR0aFRhYmxldCI6IjIwMHB4IiwiaXRlbVdpZHRoUGhvbmUiOiIyMDBweCIsIml0ZW1IZWlnaHQiOiIyMDBweCIsIml0ZW1IZWlnaHRUYWJsZXQiOiIyMDBweCIsIml0ZW1IZWlnaHRQaG9uZSI6IjIwMHB4IiwicGFnaW5hdGlvbiI6MSwicm93cyI6MiwiZ3V0dGVyIjo1LCJzaG93T3ZlcmxheSI6MSwiYmx1ck92ZXJsYXkiOjEsImhpZGVDb250ZW50IjoxfSwibG9hZGVyTG9jYXRpb24iOiJhdXRvIiwic2hvd19tb3JlIjp7ImVuYWJsZWQiOjAsInVybCI6Ij9zPXtwaHJhc2V9IiwiZWxlbWVudG9yX3VybCI6Imh0dHBzOlwvXC9hcnRhbmJpei5jb21cLz9hc3BfbHM9e3BocmFzZX0iLCJhY3Rpb24iOiJhamF4IiwibG9jYXRpb24iOiJzYW1lIiwiaW5maW5pdGUiOjF9LCJtb2JpbGUiOnsidHJpZ2dlcl9vbl90eXBlIjoxLCJjbGlja19hY3Rpb24iOiJyZXN1bHRzX3BhZ2UiLCJyZXR1cm5fYWN0aW9uIjoicmVzdWx0c19wYWdlIiwiY2xpY2tfYWN0aW9uX2xvY2F0aW9uIjoic2FtZSIsInJldHVybl9hY3Rpb25fbG9jYXRpb24iOiJzYW1lIiwicmVkaXJlY3RfdXJsIjoiP3M9e3BocmFzZX0iLCJlbGVtZW50b3JfdXJsIjoiaHR0cHM6XC9cL2FydGFuYml6LmNvbVwvP2FzcF9scz17cGhyYXNlfSIsIm1lbnVfc2VsZWN0b3IiOiIjbWVudS10b2dnbGUiLCJoaWRlX2tleWJvYXJkIjowLCJmb3JjZV9yZXNfaG92ZXIiOjAsImZvcmNlX3NldHRfaG92ZXIiOjAsImZvcmNlX3NldHRfc3RhdGUiOiJub25lIn0sImNvbXBhY3QiOnsiZW5hYmxlZCI6MCwiZm9jdXMiOjEsIndpZHRoIjoiMTAwJSIsIndpZHRoX3RhYmxldCI6IjQ4MHB4Iiwid2lkdGhfcGhvbmUiOiIzMjBweCIsImNsb3NlT25NYWduaWZpZXIiOjEsImNsb3NlT25Eb2N1bWVudCI6MCwicG9zaXRpb24iOiJzdGF0aWMiLCJvdmVybGF5IjowfSwic2IiOnsicmVkaXJlY3RfYWN0aW9uIjoiYWpheF9zZWFyY2giLCJyZWRpcmVjdF9sb2NhdGlvbiI6InNhbWUiLCJyZWRpcmVjdF91cmwiOiI/cz17cGhyYXNlfSIsImVsZW1lbnRvcl91cmwiOiJodHRwczpcL1wvYXJ0YW5iaXouY29tXC8/YXNwX2xzPXtwaHJhc2V9In0sInJiIjp7ImFjdGlvbiI6Im5vdGhpbmcifSwiYW5pbWF0aW9ucyI6eyJwYyI6eyJzZXR0aW5ncyI6eyJhbmltIjoiZmFkZWRyb3AiLCJkdXIiOjMwMH0sInJlc3VsdHMiOnsiYW5pbSI6ImZhZGVkcm9wIiwiZHVyIjozMDB9LCJpdGVtcyI6ImZhZGVJbkRvd24ifSwibW9iIjp7InNldHRpbmdzIjp7ImFuaW0iOiJmYWRlZHJvcCIsImR1ciI6MzAwfSwicmVzdWx0cyI6eyJhbmltIjoiZmFkZWRyb3AiLCJkdXIiOjMwMH0sIml0ZW1zIjoidm9pZGFuaW0ifX0sInNlbGVjdDIiOnsibm9yZXMiOiJObyByZXN1bHRzIG1hdGNoIn0sImRldGVjdFZpc2liaWxpdHkiOjAsImF1dG9wIjp7InN0YXRlIjoiZGlzYWJsZWQiLCJwaHJhc2UiOiIiLCJjb3VudCI6MTB9LCJ3b29TaG9wIjp7InVzZUFqYXgiOjAsInNlbGVjdG9yIjoiI21haW4iLCJ1cmwiOiIifSwidGF4QXJjaGl2ZSI6eyJ1c2VBamF4IjowLCJzZWxlY3RvciI6IiNtYWluIiwidXJsIjoiIn0sImNwdEFyY2hpdmUiOnsidXNlQWpheCI6MCwic2VsZWN0b3IiOiIjbWFpbiIsInVybCI6IiJ9LCJyZXNQYWdlIjp7InVzZUFqYXgiOjAsInNlbGVjdG9yIjoiI21haW4iLCJ0cmlnZ2VyX3R5cGUiOjEsInRyaWdnZXJfZmFjZXQiOjEsInRyaWdnZXJfbWFnbmlmaWVyIjowLCJ0cmlnZ2VyX3JldHVybiI6MH0sImZzc19sYXlvdXQiOiJmbGV4Iiwic2Nyb2xsQmFyIjp7Imhvcml6b250YWwiOnsiZW5hYmxlZCI6MX19LCJkaXZpIjp7ImJvZHljb21tZXJjZSI6MH0sInByZXZlbnRCb2R5U2Nyb2xsIjowLCJzdGF0aXN0aWNzIjowLCJwcmV2ZW50RXZlbnRzIjowfQ=="></div><div class='asp_hidden_data' style="display:none !important;"><div class='asp_item_overlay'><div class='asp_item_inner'><svg xmlns="http://www.w3.org/2000/svg" width="22" height="22" viewBox="0 0 512 512"><path d="M448.225 394.243l-85.387-85.385c16.55-26.08 26.146-56.986 26.146-90.094 0-92.99-75.652-168.64-168.643-168.64-92.988 0-168.64 75.65-168.64 168.64s75.65 168.64 168.64 168.64c31.466 0 60.94-8.67 86.176-23.734l86.14 86.142c36.755 36.754 92.355-18.783 55.57-55.57zm-344.233-175.48c0-64.155 52.192-116.35 116.35-116.35s116.353 52.194 116.353 116.35S284.5 335.117 220.342 335.117s-116.35-52.196-116.35-116.352zm34.463-30.26c34.057-78.9 148.668-69.75 170.248 12.863-43.482-51.037-119.984-56.532-170.248-12.862z"/></svg></div></div></div></div><div id='__original__ajaxsearchprores1_1' class='asp_w asp_r asp_r_1 asp_r_1_1 vertical ajaxsearchpro wpdreams_asp_sc wpdreams_asp_sc-1' data-id="1" data-instance="1"><div class="results"><div class="resdrg"></div></div><div class="asp_res_loader hiddend"><div class="asp_loader"><div class="asp_loader-inner asp_simple-circle"></div></div></div></div><div id='__original__ajaxsearchprosettings1_1' class="asp_w asp_ss asp_ss_1 asp_s asp_s_1 asp_s_1_1 wpdreams_asp_sc wpdreams_asp_sc-1 ajaxsearchpro searchsettings" data-id="1" data-instance="1"><form name='options' class="asp-fss-flex" aria-label="Search settings form" autocomplete = 'off'><input type="hidden" name="current_page_id" value="11424"><input type='hidden' name='qtranslate_lang' value='0'/><input type="hidden" name="filters_changed" value="0"><input type="hidden" name="filters_initial" value="1"><div style="clear:both;"></div></form></div><div class="wpdreams_clear"></div></div> </div><!-- #mobile-search /--> </div><!-- #mobile-container /--> </div><!-- .side-aside-wrapper /--> </aside><!-- .side-aside /--> </div><!-- #tie-container /--> </div><!-- .background-overlay /--> <div id="reading-position-indicator"></div><div id="autocomplete-suggestions" class="autocomplete-suggestions"></div><div id="is-scroller-outer"><div id="is-scroller"></div></div><div id="fb-root"></div> <div id="tie-popup-search-desktop" class="tie-popup tie-popup-search-wrap" style="display: none;"> <a href="#" class="tie-btn-close remove big-btn light-btn"> <span class="screen-reader-text">Close</span> </a> <div class="popup-search-wrap-inner"> <div class="live-search-parent pop-up-live-search" data-skin="live-search-popup" aria-label="Search"> <form method="get" class="tie-popup-search-form" action="https://artanbiz.com/"> <input class="tie-popup-search-input is-ajax-search" inputmode="search" type="text" name="s" title="Search for" autocomplete="off" placeholder="Type and hit Enter" /> <button class="tie-popup-search-submit" type="submit"> <span class="tie-icon-search tie-search-icon" aria-hidden="true"></span> <span class="screen-reader-text">Search for</span> </button> </form> </div><!-- .pop-up-live-search /--> </div><!-- .popup-search-wrap-inner /--> </div><!-- .tie-popup-search-wrap /--> <div id="tie-popup-search-mobile" class="tie-popup tie-popup-search-wrap" style="display: none;"> <a href="#" class="tie-btn-close remove big-btn light-btn"> <span class="screen-reader-text">Close</span> </a> <div class="popup-search-wrap-inner"> <div class="live-search-parent pop-up-live-search" data-skin="live-search-popup" aria-label="Search"> <form method="get" class="tie-popup-search-form" action="https://artanbiz.com/"> <input class="tie-popup-search-input is-ajax-search" inputmode="search" type="text" name="s" title="Search for" autocomplete="off" placeholder="Search for" /> <button class="tie-popup-search-submit" type="submit"> <span class="tie-icon-search tie-search-icon" aria-hidden="true"></span> <span class="screen-reader-text">Search for</span> </button> </form> </div><!-- .pop-up-live-search /--> </div><!-- .popup-search-wrap-inner /--> </div><!-- .tie-popup-search-wrap /--> <div id="tie-popup-login" class="tie-popup" style="display: none;"> <a href="#" class="tie-btn-close remove big-btn light-btn"> <span class="screen-reader-text">Close</span> </a> <div class="tie-popup-container"> <div class="container-wrapper"> <div class="widget login-widget"> <div class="widget-title the-global-title"> <div class="the-subtitle">Log In <span class="widget-title-icon tie-icon"></span></div> </div> <div class="widget-container"> <div class="login-form"> <form name="registerform" action="https://artanbiz.com/webadmin" method="post"> <input type="text" name="log" title="Username" placeholder="Username"> <div class="pass-container"> <input type="password" name="pwd" title="Password" placeholder="Password"> <a class="forget-text" href="https://artanbiz.com/webadmin?action=lostpassword&redirect_to=https%3A%2F%2Fartanbiz.com">Forget?</a> </div> <input type="hidden" name="redirect_to" value="/dynamic-landing-pages-optimizing-for-natural-search/"/> <label for="rememberme" class="rememberme"> <input id="rememberme" name="rememberme" type="checkbox" checked="checked" value="forever" /> Remember me </label> <button type="submit" class="button fullwidth login-submit">Log In</button> </form> </div> </div><!-- .widget-container /--> </div><!-- .login-widget /--> </div><!-- .container-wrapper /--> </div><!-- .tie-popup-container /--> </div><!-- .tie-popup /--> <div class='asp_hidden_data' id="asp_hidden_data" style="display: none !important;"> <svg style="position:absolute" height="0" width="0"> <filter id="aspblur"> <feGaussianBlur in="SourceGraphic" stdDeviation="4"/> </filter> </svg> <svg style="position:absolute" height="0" width="0"> <filter id="no_aspblur"></filter> </svg> </div> <div class="web-stories-list__lightbox-wrapper ws-lightbox-1"> <div class="web-stories-list__lightbox"> <amp-story-player width="3.6" height="6" layout="responsive"> <script type="application/json"> {"controls":[{"name":"close","position":"start"},{"name":"skip-next"}],"behavior":{"autoplay":false}} </script> <a href="https://artanbiz.com/web-stories/1036/"></a> <a href="https://artanbiz.com/web-stories/1031/"></a> <a href="https://artanbiz.com/web-stories/1027/"></a> <a href="https://artanbiz.com/web-stories/1023/"></a> </amp-story-player> </div> </div> <style id='web-stories-carousel-inline-css' type='text/css'> .glider-contain{width:100%}.glider,.glider-contain{margin:0 auto;position:relative}.glider{overflow-y:hidden;-webkit-overflow-scrolling:touch;-ms-overflow-style:none}.glider,.glider-track{transform:translateZ(0)}.glider-track{display:flex;margin:0;padding:0;width:100%;z-index:1}.glider.draggable{cursor:-webkit-grab;cursor:grab;user-select:none}.glider.draggable .glider-slide img{pointer-events:none;user-select:none}.glider.drag{cursor:-webkit-grabbing;cursor:grabbing}.glider-slide{align-content:center;justify-content:center;user-select:none;width:100%}.glider-slide img{max-width:100%}.glider::-webkit-scrollbar{height:0;opacity:0}.glider-next,.glider-prev{background:none;border:0;color:#666;cursor:pointer;font-size:40px;left:-23px;line-height:1;opacity:1;outline:none;padding:0;position:absolute;text-decoration:none;top:30%;transition:opacity .5s cubic-bezier(.17,.67,.83,.67),color .5s cubic-bezier(.17,.67,.83,.67);user-select:none;z-index:2}.glider-next:focus,.glider-next:hover,.glider-prev:focus,.glider-prev:hover{color:#a89cc8}.glider-next{left:auto;right:-23px}.glider-next.disabled,.glider-prev.disabled{color:#666;cursor:default;opacity:.25}.glider-slide{min-width:150px}.glider-hide{opacity:0}.glider-dots{display:flex;flex-wrap:wrap;justify-content:center;margin:0 auto}.glider-dot,.glider-dots{padding:0;user-select:none}.glider-dot{background:#ccc;border:0;border-radius:999px;color:#ccc;cursor:pointer;display:block;height:12px;margin:7px;outline:none;width:12px}.glider-dot.active,.glider-dot:focus,.glider-dot:hover{background:#a89cc8}@media (max-width:36em){.glider::-webkit-scrollbar{-webkit-appearance:none;height:3px;opacity:1;width:7px}.glider::-webkit-scrollbar-thumb{background-color:hsla(0,0%,61%,.25);border-radius:99px;box-shadow:0 0 1px hsla(0,0%,100%,.25);opacity:1}} </style> <style id='web-stories-list-styles-inline-css' type='text/css'> :root{--ws-font-size-title:18px;--ws-font-size-circle-title:14px;--ws-font-size-excerpt:16px;--ws-font-size-author-date:14px;--ws-aspect-ratio:4/6;--ws-list-aspect-ratio:4/6;--ws-overlay-text-color:#fff;--ws-overlay-text-lh:1.3;--ws-story-min-width:160px;--ws-story-max-width:285px;--ws-circle-size:96px;--ws-circle-border-color:#ccc}.web-stories-list{margin-bottom:24px;margin-top:24px}.web-stories-theme-header-section .web-stories-list{margin-bottom:0;margin-top:0}.web-stories-list.is-carousel .web-stories-list__inner-wrapper{margin:0 auto;max-width:max-content;position:relative}.web-stories-list__story{cursor:pointer;position:relative}.web-stories-list.is-view-type-carousel .web-stories-list__story{min-width:var(--ws-story-min-width)}.web-stories-list.is-style-default.is-view-type-carousel .web-stories-list__story,.web-stories-list.is-style-default.is-view-type-grid .web-stories-list__story{border-radius:8px;overflow:hidden}.web-stories-list__story-poster{aspect-ratio:var(--ws-aspect-ratio);position:relative}.web-stories-list__story-poster a{aspect-ratio:var(--ws-aspect-ratio);display:block;margin:0}.web-stories-list__story-poster .web-stories-list__story-poster-placeholder{box-sizing:border-box}.web-stories-list__story-poster .web-stories-list__story-poster-placeholder a,.web-stories-list__story-poster .web-stories-list__story-poster-placeholder span{border:0;clip:rect(1px,1px,1px,1px);-webkit-clip-path:inset(50%);clip-path:inset(50%);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute!important;width:1px;word-wrap:normal!important;word-break:normal}.web-stories-list__story.web-stories-list__story--amp .web-stories-list__story-poster a{pointer-events:none}.web-stories-list__story-poster img{box-sizing:border-box;height:100%;object-fit:cover;position:absolute;width:100%}.web-stories-list__story-poster:after{background:linear-gradient(180deg,hsla(0,0%,100%,0),rgba(0,0,0,.8));content:"";display:block;height:100%;left:0;pointer-events:none;position:absolute;top:0;width:100%}.web-stories-list__story-content-overlay{line-height:var(--ws-overlay-text-lh);padding:10px}html[amp] .web-stories-list__story-content-overlay{white-space:normal}.web-stories-list.is-view-type-carousel .web-stories-list__story-content-overlay,.web-stories-list.is-view-type-grid .web-stories-list__story-content-overlay{bottom:0;color:var(--ws-overlay-text-color);position:absolute;z-index:1}.web-stories-list .story-content-overlay__title{font-size:var(--ws-font-size-title);font-weight:700}.web-stories-list .story-content-overlay__author,.web-stories-list .story-content-overlay__date{font-size:var(--ws-font-size-author-date)}.web-stories-list .story-content-overlay__excerpt,.web-stories-list .story-content-overlay__title{display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden}.web-stories-list .story-content-overlay__title:not(:last-child){margin-bottom:15px}.web-stories-list .story-content-overlay__excerpt{-webkit-line-clamp:3;font-size:var(--ws-font-size-excerpt);margin-bottom:8px}.web-stories-list.alignfull .web-stories-list__archive-link{right:10px}.web-stories-list.is-view-type-grid .web-stories-list__archive-link,.web-stories-list.is-view-type-list .web-stories-list__archive-link{display:block;flex-basis:100%;margin:32px auto 0;text-align:center}.web-stories-list.is-view-type-grid .web-stories-list__archive-link a,.web-stories-list.is-view-type-list .web-stories-list__archive-link a{border:1px solid;border-radius:100px;padding:7px 53px}.web-stories-lightbox-open{overflow-y:hidden}.web-stories-list__lightbox,.web-stories-singleton__lightbox{align-items:center;background:#000;height:100%;justify-content:center;left:0;opacity:0;position:fixed;top:0;transform:translateY(-100vh);width:100%;z-index:-999999999}.web-stories-list__lightbox-wrapper amp-lightbox,.web-stories-list__lightbox.show,.web-stories-singleton__lightbox.show{z-index:999999999}.web-stories-list__lightbox.show,.web-stories-singleton__lightbox.show{opacity:1;transform:translate(0)}.web-stories-list__lightbox amp-story-player,.web-stories-singleton__lightbox amp-story-player{height:100%;width:100%}.story-lightbox__close-button{background:none!important;border:none;border-radius:0;cursor:pointer;display:inline-block;height:40px;left:0;position:absolute;top:8px;width:40px;z-index:1}.story-lightbox__close-button--stick{background-color:#fff;display:inline-block;height:20px;left:20px;position:absolute;top:15px;transform:rotate(45deg);width:3px}.story-lightbox__close-button--stick:first-child{transform:rotate(-45deg)}html:not([amp]) .web-stories-list .web-stories-list__lightbox amp-story-player a,html:not([amp]) .web-stories-singleton__lightbox amp-story-player a{position:absolute}@media (min-width:676px){.admin-bar .web-stories-list__lightbox,.admin-bar .web-stories-singleton__lightbox{top:46px}.story-lightbox__close-button{left:10px}.story-lightbox__close-button--stick{height:25px;left:20px;top:5px}}@media (min-width:783px){.admin-bar .web-stories-list__lightbox,.admin-bar .web-stories-singleton__lightbox{top:32px}}.web-stories-list.is-view-type-grid .web-stories-list__inner-wrapper{display:flex;flex-wrap:wrap}.web-stories-list.is-view-type-grid .web-stories-list__story{flex-basis:calc(100% - 8px);margin:4px}@media (min-width:415px){.web-stories-list.is-view-type-grid.columns-1 .web-stories-list__story{flex-basis:calc(100% - 8px)}.web-stories-list.is-view-type-grid.columns-2 .web-stories-list__story{flex-basis:calc(50% - 8px)}.web-stories-list.is-view-type-grid.columns-3 .web-stories-list__story{flex-basis:calc(33.33333% - 8px)}.web-stories-list.is-view-type-grid.columns-4 .web-stories-list__story{flex-basis:calc(25% - 8px)}.web-stories-list.is-view-type-grid.columns-5 .web-stories-list__story{flex-basis:calc(20% - 8px)}}.web-stories-theme-header-section .web-stories-list.is-view-type-circles{border-bottom:1px solid #ccc;padding:12px 0}.web-stories-list.is-view-type-circles .amp-carousel-slide{vertical-align:top}.web-stories-list.is-view-type-circles .glider-track{margin:0 auto}.web-stories-list.is-view-type-circles .web-stories-list__story{display:inline-block;margin:0 5px;max-width:var(--ws-circle-size);min-width:var(--ws-circle-size);text-align:center}.web-stories-list.is-view-type-circles .web-stories-list__story-poster,.web-stories-list.is-view-type-circles .web-stories-list__story-poster a{aspect-ratio:1}.web-stories-list.is-view-type-circles .web-stories-list__story-poster>img{border-radius:50%}.web-stories-list.is-view-type-circles .web-stories-list__story-poster .web-stories-list__story-poster-placeholder,.web-stories-list.is-view-type-circles .web-stories-list__story-poster a>img,.web-stories-list.is-view-type-circles .web-stories-list__story-poster>img{background-clip:content-box;border:2px solid var(--ws-circle-border-color);border-radius:50%;height:var(--ws-circle-size);left:0;max-width:none;padding:2px;position:absolute;top:0;width:var(--ws-circle-size)}.web-stories-list.is-view-type-circles .web-stories-list__story-poster a>img{border-radius:50%}.web-stories-list.is-view-type-circles .web-stories-list__story-poster:after{display:none}.web-stories-list.is-view-type-circles .web-stories-list__story-poster-placeholder:after{background:linear-gradient(180deg,hsla(0,0%,100%,0),rgba(0,0,0,.8));border-radius:50%;content:"";display:block;height:100%;left:0;position:absolute;top:0;width:100%}.web-stories-list.is-view-type-circles .web-stories-list__story-content-overlay{padding-bottom:0}.web-stories-list.is-view-type-circles .story-content-overlay__title{font-size:var(--ws-font-size-circle-title)}.web-stories-list.is-view-type-circles.has-title .glider-next,.web-stories-list.is-view-type-circles.has-title .glider-prev{top:35%}.web-stories-list.is-view-type-list .web-stories-list__story{margin-bottom:12px}.web-stories-list.is-view-type-list .web-stories-list__story-content-overlay{bottom:0;color:var(--ws-overlay-text-color);position:absolute;z-index:1}.ws-legacy-widget-preview .web-stories-list.is-view-type-list .web-stories-list__story{align-items:center;display:flex;flex-wrap:nowrap}.ws-legacy-widget-preview .web-stories-list.is-view-type-list .web-stories-list__story-poster{aspect-ratio:var(--ws-list-aspect-ratio);flex-basis:40%}.ws-legacy-widget-preview .web-stories-list.is-view-type-list .web-stories-list__story-poster:after{display:none}.ws-legacy-widget-preview .web-stories-list.is-view-type-list .web-stories-list__story-content-overlay{color:inherit;flex-basis:60%;padding:10px 15px;position:relative}.ws-legacy-widget-preview .web-stories-list.is-view-type-list .image-align-right .web-stories-list__story-poster{order:2}.ws-legacy-widget-preview .web-stories-list.is-view-type-list .image-align-right .web-stories-list__story-content-overlay{order:1}.ws-legacy-widget-preview .web-stories-list.is-view-type-list.is-style-default .web-stories-list__story-poster{border-radius:8px;overflow:hidden}@media (min-width:676px){.web-stories-list.is-view-type-list .web-stories-list__story{align-items:center;display:flex;flex-wrap:nowrap}.web-stories-list.is-view-type-list .web-stories-list__story-poster{aspect-ratio:var(--ws-list-aspect-ratio);flex-basis:40%}.web-stories-list.is-view-type-list .web-stories-list__story-poster:after{display:none}.web-stories-list.is-view-type-list .web-stories-list__story-content-overlay{color:inherit;flex-basis:60%;padding:10px 15px;position:relative}.web-stories-list.is-view-type-list .image-align-right .web-stories-list__story-poster{order:2}.web-stories-list.is-view-type-list .image-align-right .web-stories-list__story-content-overlay{order:1}.web-stories-list.is-view-type-list.is-style-default .web-stories-list__story-poster{border-radius:8px;overflow:hidden}}.carousel>.glider-track>.web-stories-list__story{margin:0 10px}@media (min-width:676px){.web-stories-list.is-view-type-carousel .web-stories-list__story{margin:0 5px;max-width:var(--ws-story-max-width)}}.ws-legacy-widget-preview .web-stories-list.is-view-type-carousel .web-stories-list__story{margin:0 5px;max-width:var(--ws-story-max-width)}.web-stories-list.is-carousel.has-archive-link{margin-top:59px}.web-stories-theme-header-section .web-stories-list.is-carousel.has-archive-link{margin-top:24px;padding-top:59px;position:relative}.web-stories-list.is-carousel .web-stories-list__archive-link{position:absolute;right:0;top:-35px}.web-stories-theme-header-section .web-stories-list.is-carousel .web-stories-list__archive-link{right:10px}.web-stories-list.is-carousel .glider-next,.web-stories-list.is-carousel .glider-prev{padding:10px;top:50%;transform:translateY(-50%)}.web-stories-list.is-carousel .glider-prev{transform:translateY(-50%) rotate(180deg) /*!rtl:translateY(-50%)*/}.web-stories-list.is-carousel .amp-carousel-button-next,.web-stories-list.is-carousel .amp-carousel-button-prev,.web-stories-list.is-carousel .glider-next,.web-stories-list.is-carousel .glider-prev{background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI5IiBoZWlnaHQ9IjE0IiBmaWxsPSJub25lIj48cGF0aCBzdHJva2U9IiMwMDAiIHN0cm9rZS13aWR0aD0iMiIgZD0ibTEuNTMyIDEuMzgzIDUuNTEgNS41MS01LjUxIDUuNTExIi8+PC9zdmc+)}.web-stories-list.is-carousel .amp-carousel-button-next,.web-stories-list.is-carousel .glider-next{right:0}.web-stories-list.is-carousel .amp-carousel-button-prev,.web-stories-list.is-carousel .glider-prev{left:0}.web-stories-list.is-carousel .amp-carousel-button-prev{transform:rotate(180deg) /*!rtl:none*/}html[dir=rtl] .web-stories-list.is-carousel .amp-carousel-button-next{transform:rotate(180deg)}.web-stories-list.is-carousel .amp-carousel-button,.web-stories-list.is-carousel .glider-next,.web-stories-list.is-carousel .glider-prev{background-color:#eaeaea;background-position:50%;background-repeat:no-repeat;background-size:30%;border-radius:50%;border-style:none;box-sizing:border-box;cursor:pointer;height:34px;pointer-events:all;width:34px;z-index:10}html[dir=rtl] .web-stories-list.is-carousel .glider-next{transform:translateY(-50%) rotate(180deg)}.glider-next.disabled,.glider-prev.disabled,.web-stories-list.is-carousel .amp-carousel-button.amp-disabled{opacity:0}html[dir=rtl] .glider-next.disabled,html[dir=rtl] .glider-prev.disabled{cursor:pointer;opacity:1}.web-stories-list.is-carousel .amp-carousel-button:not(.amp-disabled):hover,.web-stories-list.is-carousel .glider-next:not(.disabled):focus,.web-stories-list.is-carousel .glider-next:not(.disabled):hover,.web-stories-list.is-carousel .glider-prev:not(.disabled):focus,.web-stories-list.is-carousel .glider-prev:not(.disabled):hover,html[dir=rtl] .glider-next.disabled:hover,html[dir=rtl] .glider-prev.disabled:hover{filter:invert(1)}.web-stories-list.is-carousel .web-stories-list__carousel{scrollbar-width:none}.web-stories-list.is-carousel .glider-track::-webkit-scrollbar{display:none}.web-stories-list.is-carousel.is-view-type-carousel .web-stories-list__carousel:not(.glider){display:flex;overflow-y:scroll} </style> <link rel='stylesheet' id='standalone-amp-story-player-css' href='https://cdn.ampproject.org/amp-story-player-v0.css?ver=v0' type='text/css' media='all' /> <script type="text/javascript" id="ez-toc-scroll-scriptjs-js-extra"> /* <![CDATA[ */ var eztoc_smooth_local = {"scroll_offset":"30","add_request_uri":""}; /* ]]> */ </script> <script type="text/javascript" src="https://artanbiz.com/wp-content/plugins/easy-table-of-contents/assets/js/smooth_scroll.min.js?ver=2.0.69.1" id="ez-toc-scroll-scriptjs-js"></script> <script type="text/javascript" src="https://artanbiz.com/wp-content/plugins/easy-table-of-contents/vendor/js-cookie/js.cookie.min.js?ver=2.2.1" id="ez-toc-js-cookie-js"></script> <script type="text/javascript" src="https://artanbiz.com/wp-content/plugins/easy-table-of-contents/vendor/sticky-kit/jquery.sticky-kit.min.js?ver=1.9.2" id="ez-toc-jquery-sticky-kit-js"></script> <script type="text/javascript" id="ez-toc-js-js-extra"> /* <![CDATA[ */ var ezTOC = {"smooth_scroll":"1","visibility_hide_by_default":"","scroll_offset":"30","fallbackIcon":"<span class=\"\"><span class=\"eztoc-hide\" style=\"display:none;\">Toggle<\/span><span class=\"ez-toc-icon-toggle-span\"><svg style=\"fill: #999;color:#999\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" class=\"list-377408\" width=\"20px\" height=\"20px\" viewBox=\"0 0 24 24\" fill=\"none\"><path d=\"M6 6H4v2h2V6zm14 0H8v2h12V6zM4 11h2v2H4v-2zm16 0H8v2h12v-2zM4 16h2v2H4v-2zm16 0H8v2h12v-2z\" fill=\"currentColor\"><\/path><\/svg><svg style=\"fill: #999;color:#999\" class=\"arrow-unsorted-368013\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"10px\" height=\"10px\" viewBox=\"0 0 24 24\" version=\"1.2\" baseProfile=\"tiny\"><path d=\"M18.2 9.3l-6.2-6.3-6.2 6.3c-.2.2-.3.4-.3.7s.1.5.3.7c.2.2.4.3.7.3h11c.3 0 .5-.1.7-.3.2-.2.3-.5.3-.7s-.1-.5-.3-.7zM5.8 14.7l6.2 6.3 6.2-6.3c.2-.2.3-.5.3-.7s-.1-.5-.3-.7c-.2-.2-.4-.3-.7-.3h-11c-.3 0-.5.1-.7.3-.2.2-.3.5-.3.7s.1.5.3.7z\"\/><\/svg><\/span><\/span>","chamomile_theme_is_on":""}; /* ]]> */ </script> <script type="text/javascript" src="https://artanbiz.com/wp-content/plugins/easy-table-of-contents/assets/js/front.min.js?ver=2.0.69.1-1726043019" id="ez-toc-js-js"></script> <script type="text/javascript" id="daim-track-internal-links-js-before"> /* <![CDATA[ */ window.DAIM_PARAMETERS = {ajax_url: "https://artanbiz.com/wp-admin/admin-ajax.php",nonce: "94b848bf26"}; /* ]]> */ </script> <script type="text/javascript" src="https://artanbiz.com/wp-content/plugins/interlinks-manager/public/assets/js/track-internal-links.js?ver=1.30" id="daim-track-internal-links-js"></script> <script type="text/javascript" id="tie-scripts-js-extra"> /* <![CDATA[ */ var tie = {"is_rtl":"","ajaxurl":"https:\/\/artanbiz.com\/wp-admin\/admin-ajax.php","is_side_aside_light":"","is_taqyeem_active":"1","is_sticky_video":"1","mobile_menu_top":"","mobile_menu_active":"area_2","mobile_menu_parent":"true","lightbox_all":"true","lightbox_gallery":"true","lightbox_skin":"dark","lightbox_thumb":"horizontal","lightbox_arrows":"true","is_singular":"1","autoload_posts":"","reading_indicator":"true","lazyload":"","select_share":"true","select_share_twitter":"true","select_share_facebook":"true","select_share_linkedin":"true","select_share_email":"true","facebook_app_id":"5303202981","twitter_username":"","responsive_tables":"true","ad_blocker_detector":"","sticky_behavior":"upwards","sticky_desktop":"true","sticky_mobile":"true","sticky_mobile_behavior":"default","ajax_loader":"<div class=\"loader-overlay\">\n\t\t\t\t<div class=\"spinner\">\n\t\t\t\t\t<div class=\"bounce1\"><\/div>\n\t\t\t\t\t<div class=\"bounce2\"><\/div>\n\t\t\t\t\t<div class=\"bounce3\"> <\/div>\n\t\t\t\t<\/div>\n\t\t\t<\/div>","type_to_search":"","lang_no_results":"Nothing Found","sticky_share_mobile":"true","sticky_share_post":"","sticky_share_post_menu":"1"}; /* ]]> */ </script> <script type="text/javascript" src="https://artanbiz.com/wp-content/themes/jannah/assets/js/scripts.min.js?ver=7.2.0" id="tie-scripts-js"></script> <script type="text/javascript" id="tie-scripts-js-after"> /* <![CDATA[ */ jQuery.ajax({ type : "GET", url : "https://artanbiz.com/wp-admin/admin-ajax.php", data : "postviews_id=11424&action=tie_postviews", cache: !1, success: function( data ){ jQuery(".single-post-meta").find(".meta-views").html( data ); } }); /* ]]> */ </script> <script type="text/javascript" src="https://artanbiz.com/wp-content/themes/jannah/assets/ilightbox/lightbox.js?ver=7.2.0" id="tie-js-ilightbox-js"></script> <script type="text/javascript" src="https://artanbiz.com/wp-content/themes/jannah/assets/js/sliders.min.js?ver=7.2.0" id="tie-js-sliders-js"></script> <script type="text/javascript" src="https://artanbiz.com/wp-content/themes/jannah/assets/js/shortcodes.js?ver=7.2.0" id="tie-js-shortcodes-js"></script> <script type="text/javascript" src="https://artanbiz.com/wp-content/themes/jannah/assets/js/desktop.min.js?ver=7.2.0" id="tie-js-desktop-js"></script> <script type="text/javascript" src="https://artanbiz.com/wp-content/themes/jannah/assets/js/live-search.js?ver=7.2.0" id="tie-js-livesearch-js"></script> <script type="text/javascript" src="https://artanbiz.com/wp-content/themes/jannah/assets/js/single.min.js?ver=7.2.0" id="tie-js-single-js"></script> <script type="text/javascript" src="https://artanbiz.com/wp-includes/js/comment-reply.min.js?ver=f7e31bf10ef196fd4b6975c7468b4397" id="comment-reply-js" async="async" data-wp-strategy="async"></script> <script type="text/javascript" src="https://artanbiz.com/wp-content/plugins/ol_scrapes/assets/js/ext-image.js?ver=4.5.0" id="ol_img_resize-js"></script> <script defer type="text/javascript" src="https://artanbiz.com/wp-content/plugins/akismet/_inc/akismet-frontend.js?ver=1720688178" id="akismet-frontend-js"></script> <script type="text/javascript" src="https://artanbiz.com/wp-includes/js/dist/dom-ready.min.js?ver=f77871ff7694fffea381" id="wp-dom-ready-js"></script> <script type="text/javascript" src="https://artanbiz.com/wp-includes/js/dist/hooks.min.js?ver=2810c76e705dd1a53b18" id="wp-hooks-js"></script> <script type="text/javascript" src="https://artanbiz.com/wp-includes/js/dist/i18n.min.js?ver=5e580eb46a90c2b997e6" id="wp-i18n-js"></script> <script type="text/javascript" id="wp-i18n-js-after"> /* <![CDATA[ */ wp.i18n.setLocaleData( { 'text direction\u0004ltr': [ 'ltr' ] } ); /* ]]> */ </script> <script type="text/javascript" id="web-stories-carousel-js-extra"> /* <![CDATA[ */ var webStoriesCarouselSettings = {"config":{"isRTL":false}}; /* ]]> */ </script> <script type="text/javascript" src="https://artanbiz.com/wp-content/plugins/web-stories/assets/js/web-stories-carousel.js?ver=d15033d3ec5e986c1b40" id="web-stories-carousel-js"></script> <script type="text/javascript" src="https://cdn.ampproject.org/amp-story-player-v0.js?ver=v0" id="standalone-amp-story-player-js"></script> <script type="text/javascript" src="https://artanbiz.com/wp-content/plugins/web-stories/assets/js/web-stories-lightbox.js?ver=e684dbcd04cdfd5a210b" id="web-stories-lightbox-js"></script> <script> WebFontConfig ={ google:{ families: [ 'Be+Vietnam:600,regular:latin', 'Be+Vietnam:100,100italic,300,300italic,regular,italic,500,500italic,700,700italic,800,800italic,900,900italic:latin&display=swap' ] } }; (function(){ var wf = document.createElement('script'); wf.src = '//ajax.googleapis.com/ajax/libs/webfont/1/webfont.js'; wf.type = 'text/javascript'; wf.defer = 'true'; var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(wf, s); })(); </script> <script type='text/javascript'> !function(t){"use strict";t.loadCSS||(t.loadCSS=function(){});var e=loadCSS.relpreload={};if(e.support=function(){var e;try{e=t.document.createElement("link").relList.supports("preload")}catch(t){e=!1}return function(){return e}}(),e.bindMediaToggle=function(t){var e=t.media||"all";function a(){t.addEventListener?t.removeEventListener("load",a):t.attachEvent&&t.detachEvent("onload",a),t.setAttribute("onload",null),t.media=e}t.addEventListener?t.addEventListener("load",a):t.attachEvent&&t.attachEvent("onload",a),setTimeout(function(){t.rel="stylesheet",t.media="only x"}),setTimeout(a,3e3)},e.poly=function(){if(!e.support())for(var a=t.document.getElementsByTagName("link"),n=0;n<a.length;n++){var o=a[n];"preload"!==o.rel||"style"!==o.getAttribute("as")||o.getAttribute("data-loadcss")||(o.setAttribute("data-loadcss",!0),e.bindMediaToggle(o))}},!e.support()){e.poly();var a=t.setInterval(e.poly,500);t.addEventListener?t.addEventListener("load",function(){e.poly(),t.clearInterval(a)}):t.attachEvent&&t.attachEvent("onload",function(){e.poly(),t.clearInterval(a)})}"undefined"!=typeof exports?exports.loadCSS=loadCSS:t.loadCSS=loadCSS}("undefined"!=typeof global?global:this); </script> <script type='text/javascript'> var c = document.body.className; c = c.replace(/tie-no-js/, 'tie-js'); document.body.className = c; </script> <script id='wd-asp-instances-d55e5bc3'>window.ASP_INSTANCES = [];window.ASP_INSTANCES[1] = {"homeurl":"https:\/\/artanbiz.com\/","is_results_page":0,"resultstype":"vertical","resultsposition":"hover","resultsSnapTo":"left","results":{"width":"auto","width_tablet":"auto","width_phone":"auto"},"itemscount":4,"charcount":0,"highlight":0,"highlightWholewords":1,"singleHighlight":0,"scrollToResults":{"enabled":0,"offset":0},"autocomplete":{"enabled":1,"trigger_charcount":0,"googleOnly":1,"lang":"en","mobile":1},"trigger":{"delay":300,"autocomplete_delay":310,"update_href":0,"facet":1,"type":1,"click":"results_page","click_location":"same","return":"results_page","return_location":"same","redirect_url":"?s={phrase}","elementor_url":"https:\/\/artanbiz.com\/?asp_ls={phrase}"},"overridewpdefault":1,"override_method":"get","settings":{"unselectChildren":1,"hideChildren":0},"settingsimagepos":"right","settingsVisible":0,"settingsHideOnRes":0,"prescontainerheight":"400px","closeOnDocClick":1,"focusOnPageload":0,"isotopic":{"itemWidth":"200px","itemWidthTablet":"200px","itemWidthPhone":"200px","itemHeight":"200px","itemHeightTablet":"200px","itemHeightPhone":"200px","pagination":1,"rows":2,"gutter":5,"showOverlay":1,"blurOverlay":1,"hideContent":1},"loaderLocation":"auto","show_more":{"enabled":0,"url":"?s={phrase}","elementor_url":"https:\/\/artanbiz.com\/?asp_ls={phrase}","action":"ajax","location":"same","infinite":1},"mobile":{"trigger_on_type":1,"click_action":"results_page","return_action":"results_page","click_action_location":"same","return_action_location":"same","redirect_url":"?s={phrase}","elementor_url":"https:\/\/artanbiz.com\/?asp_ls={phrase}","menu_selector":"#menu-toggle","hide_keyboard":0,"force_res_hover":0,"force_sett_hover":0,"force_sett_state":"none"},"compact":{"enabled":0,"focus":1,"width":"100%","width_tablet":"480px","width_phone":"320px","closeOnMagnifier":1,"closeOnDocument":0,"position":"static","overlay":0},"sb":{"redirect_action":"ajax_search","redirect_location":"same","redirect_url":"?s={phrase}","elementor_url":"https:\/\/artanbiz.com\/?asp_ls={phrase}"},"rb":{"action":"nothing"},"animations":{"pc":{"settings":{"anim":"fadedrop","dur":300},"results":{"anim":"fadedrop","dur":300},"items":"fadeInDown"},"mob":{"settings":{"anim":"fadedrop","dur":300},"results":{"anim":"fadedrop","dur":300},"items":"voidanim"}},"select2":{"nores":"No results match"},"detectVisibility":0,"autop":{"state":"disabled","phrase":"","count":10},"wooShop":{"useAjax":0,"selector":"#main","url":""},"taxArchive":{"useAjax":0,"selector":"#main","url":""},"cptArchive":{"useAjax":0,"selector":"#main","url":""},"resPage":{"useAjax":0,"selector":"#main","trigger_type":1,"trigger_facet":1,"trigger_magnifier":0,"trigger_return":0},"fss_layout":"flex","scrollBar":{"horizontal":{"enabled":1}},"divi":{"bodycommerce":0},"preventBodyScroll":0,"statistics":0,"preventEvents":0};</script><script type='text/javascript' id='wd-asp-ajaxsearchpro-js-before'>if ( typeof window.ASP == 'undefined') { window.ASP = {wp_rocket_exception: "DOMContentLoaded", ajaxurl: "https:\/\/artanbiz.com\/wp-admin\/admin-ajax.php", backend_ajaxurl: "https:\/\/artanbiz.com\/wp-admin\/admin-ajax.php", asp_url: "https:\/\/artanbiz.com\/wp-content\/plugins\/ajax-search-pro\/", upload_url: "https:\/\/artanbiz.com\/wp-content\/uploads\/asp_upload\/", detect_ajax: 1, media_query: "gSUpwD", version: 5068, pageHTML: "", additional_scripts: [{"handle":"wd-asp-ajaxsearchpro","path":"\/home\/artanbizcom\/domains\/artanbiz.com\/public_html\/wp-content\/plugins\/ajax-search-pro\/js\/min\/plugin\/optimized\/asp-prereq.js","src":"https:\/\/artanbiz.com\/wp-content\/plugins\/ajax-search-pro\/js\/min\/plugin\/optimized\/asp-prereq.js","prereq":[]},{"handle":"wd-asp-ajaxsearchpro-core","path":"\/home\/artanbizcom\/domains\/artanbiz.com\/public_html\/wp-content\/plugins\/ajax-search-pro\/js\/min\/plugin\/optimized\/asp-core.js","src":"https:\/\/artanbiz.com\/wp-content\/plugins\/ajax-search-pro\/js\/min\/plugin\/optimized\/asp-core.js","prereq":[]},{"handle":"wd-asp-ajaxsearchpro-vertical","path":"\/home\/artanbizcom\/domains\/artanbiz.com\/public_html\/wp-content\/plugins\/ajax-search-pro\/js\/min\/plugin\/optimized\/asp-results-vertical.js","src":"https:\/\/artanbiz.com\/wp-content\/plugins\/ajax-search-pro\/js\/min\/plugin\/optimized\/asp-results-vertical.js","prereq":["wd-asp-ajaxsearchpro"]},{"handle":"wd-asp-ajaxsearchpro-live","path":"\/home\/artanbizcom\/domains\/artanbiz.com\/public_html\/wp-content\/plugins\/ajax-search-pro\/js\/min\/plugin\/optimized\/asp-live.js","src":"https:\/\/artanbiz.com\/wp-content\/plugins\/ajax-search-pro\/js\/min\/plugin\/optimized\/asp-live.js","prereq":["wd-asp-ajaxsearchpro"]},{"handle":"wd-asp-ajaxsearchpro-autocomplete","path":"\/home\/artanbizcom\/domains\/artanbiz.com\/public_html\/wp-content\/plugins\/ajax-search-pro\/js\/min\/plugin\/optimized\/asp-autocomplete.js","src":"https:\/\/artanbiz.com\/wp-content\/plugins\/ajax-search-pro\/js\/min\/plugin\/optimized\/asp-autocomplete.js","prereq":["wd-asp-ajaxsearchpro"]},{"handle":"wd-asp-ajaxsearchpro-load","path":"\/home\/artanbizcom\/domains\/artanbiz.com\/public_html\/wp-content\/plugins\/ajax-search-pro\/js\/min\/plugin\/optimized\/asp-load.js","src":"https:\/\/artanbiz.com\/wp-content\/plugins\/ajax-search-pro\/js\/min\/plugin\/optimized\/asp-load.js","prereq":["wd-asp-ajaxsearchpro-autocomplete"]}], script_async_load: false, font_url: "https:\/\/artanbiz.com\/wp-content\/plugins\/ajax-search-pro\/css\/fonts\/icons\/icons2.woff2", init_only_in_viewport: true, highlight: {"enabled":false,"data":[]}, debug: false, instances: {}, analytics: {"method":"event","tracking_id":"","event":{"focus":{"active":1,"action":"focus","category":"ASP {search_id} | {search_name}","label":"Input focus","value":"1"},"search_start":{"active":0,"action":"search_start","category":"ASP {search_id} | {search_name}","label":"Phrase: {phrase}","value":"1"},"search_end":{"active":1,"action":"search_end","category":"ASP {search_id} | {search_name}","label":"{phrase} | {results_count}","value":"1"},"magnifier":{"active":1,"action":"magnifier","category":"ASP {search_id} | {search_name}","label":"Magnifier clicked","value":"1"},"return":{"active":1,"action":"return","category":"ASP {search_id} | {search_name}","label":"Return button pressed","value":"1"},"try_this":{"active":1,"action":"try_this","category":"ASP {search_id} | {search_name}","label":"Try this click | {phrase}","value":"1"},"facet_change":{"active":0,"action":"facet_change","category":"ASP {search_id} | {search_name}","label":"{option_label} | {option_value}","value":"1"},"result_click":{"active":1,"action":"result_click","category":"ASP {search_id} | {search_name}","label":"{result_title} | {result_url}","value":"1"}}}}};</script><script type='text/javascript' src='https://artanbiz.com/wp-content/plugins/ajax-search-pro/js/min/plugin/optimized/asp-prereq.js' id='wd-asp-ajaxsearchpro-js'></script><script type='text/javascript' src='https://artanbiz.com/wp-content/plugins/ajax-search-pro/js/min/plugin/optimized/asp-core.js' id='wd-asp-ajaxsearchpro-core-js'></script><script type='text/javascript' src='https://artanbiz.com/wp-content/plugins/ajax-search-pro/js/min/plugin/optimized/asp-results-vertical.js' id='wd-asp-ajaxsearchpro-vertical-js'></script><script type='text/javascript' src='https://artanbiz.com/wp-content/plugins/ajax-search-pro/js/min/plugin/optimized/asp-live.js' id='wd-asp-ajaxsearchpro-live-js'></script><script type='text/javascript' src='https://artanbiz.com/wp-content/plugins/ajax-search-pro/js/min/plugin/optimized/asp-autocomplete.js' id='wd-asp-ajaxsearchpro-autocomplete-js'></script><script type='text/javascript' src='https://artanbiz.com/wp-content/plugins/ajax-search-pro/js/min/plugin/optimized/asp-load.js' id='wd-asp-ajaxsearchpro-load-js'></script><script type='text/javascript' src='https://artanbiz.com/wp-content/plugins/ajax-search-pro/js/min/plugin/optimized/asp-wrapper.js' id='wd-asp-ajaxsearchpro-wrapper-js'></script></body> </html> <!-- Page cached by LiteSpeed Cache 6.5.1 on 2024-10-16 07:13:35 --><script data-cfasync="false" src="/cdn-cgi/scripts/5c5dd728/cloudflare-static/email-decode.min.js"></script>